From c08adfb54fb1af126fd1ae34bbab789a5c8ef383 Mon Sep 17 00:00:00 2001 From: Victor Moraes Date: Thu, 20 Jan 2022 15:36:07 -0300 Subject: [PATCH] Fixes python SDK and Authenticator version (#236) --- authenticator/main.go | 2 +- sdk/python/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/authenticator/main.go b/authenticator/main.go index 621985c0..4572c384 100644 --- a/authenticator/main.go +++ b/authenticator/main.go @@ -12,7 +12,7 @@ import ( log "github.com/sirupsen/logrus" ) -const currentVersion = "0.2.1" +const currentVersion = "0.2.4" func main() { c, err := config.Parse() diff --git a/sdk/python/pyproject.toml b/sdk/python/pyproject.toml index 0c2d030e..9536f1da 100644 --- a/sdk/python/pyproject.toml +++ b/sdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "approzium" -version = "0.2.3" +version = "0.2.4" description = "Approzium SDK provides Approzium database authentiation for Python" authors = ["Cyral "] homepage = "https://github.com/cyralinc/approzium"