Skip to content

Commit

Permalink
fix(version): update package version to be released
Browse files Browse the repository at this point in the history
  • Loading branch information
dabocs committed Jan 18, 2023
1 parent 352369b commit 47a778c
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ Release Notes

**unreleased**

**v0.2.3**

* Fixed ENTTITLMENT issue by commenting the code temporarily, till fully fixed
* https://issues.redhat.com/browse/KEYCLOAK-8353

**v0.2.2**

* Fixed issue by adding migration file to repo
Expand Down
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ Release Notes

**unreleased**

**v0.2.3**

* Fixed ENTTITLMENT issue by commenting the code temporarily, till fully fixed
* https://issues.redhat.com/browse/KEYCLOAK-8353

**v0.2.2**

* Fixed issue by adding migration file to repo
Expand Down
9 changes: 9 additions & 0 deletions SETUP-README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
* Docs source: https://packaging.python.org/en/latest/tutorials/packaging-projects/


python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
python3 -m build # Generate distribution archives
python3 -m pip install --upgrade twine
python3 -m twine upload dist/* # Upload the distribution archives

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
author = u'Peter Slump'

# The short X.Y version
version = u'0.2.2'
version = u'0.2.3'
# The full version, including alpha/beta/rc tags
release = u'0.2.2'
release = u'0.2.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "django-keycloak-pkg"
version = "0.2.2"
version = "0.2.3"
authors = [
{ name="Ahmad Dabo", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.2
current_version = 0.2.3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

VERSION = '0.2.2'
VERSION = '0.2.3'

with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
Expand Down

0 comments on commit 47a778c

Please sign in to comment.