From 66ccb83e330d5376aa263dbc447da2239b3261fd Mon Sep 17 00:00:00 2001 From: Vladyslav Fenchak Date: Thu, 3 Feb 2022 10:57:51 +0100 Subject: [PATCH] v0.1.0 --- HISTORY.md | 2 +- minos/auth_credential/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index ad85b88..6114310 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,5 @@ # History -## 0.0.1 (2022-01-17) +## 0.1.0 (2022-02-03) * First release on PyPI. diff --git a/minos/auth_credential/__init__.py b/minos/auth_credential/__init__.py index 9375f46..c2d98bc 100644 --- a/minos/auth_credential/__init__.py +++ b/minos/auth_credential/__init__.py @@ -1,6 +1,6 @@ __author__ = """Clariteia Devs""" __email__ = "devs@clariteia.com" -__version__ = "0.0.1" +__version__ = "0.1.0" from .config import ( CredentialConfig, diff --git a/pyproject.toml b/pyproject.toml index 2fae195..81e1d27 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "minos_auth_credential" -version = "0.0.1" +version = "0.1.0" description = "Minos Boilerplate contains all the boilerplate you need to create a Minos Python package." readme = "README.md" repository = "https://github.com/clariteia/minos_auth_credential"