diff --git a/docs/internals/changelog.txt b/docs/internals/changelog.txt index 99706aa..48cc7b4 100644 --- a/docs/internals/changelog.txt +++ b/docs/internals/changelog.txt @@ -16,6 +16,20 @@ section of releases. You can retrieve all deprecations :doc:`here ` +Socon 0.1.1 +=========== + +Bug Fixes: +---------- + +* `#2 `_: Fixed by removing __pycache__ when rendering templates + +Improved Documentation +---------------------- + +* Fix link in CONTRIBUTION.rst +* Fix spelling in pyproject.toml description + Socon 0.1.0 =========== diff --git a/socon/__init__.py b/socon/__init__.py index 512e462..d56a8a3 100644 --- a/socon/__init__.py +++ b/socon/__init__.py @@ -3,7 +3,7 @@ from socon.utils.version import get_version -VERSION = (0, 1, 0, "final", 0) +VERSION = (0, 1, 1, "final", 0) __version__ = get_version(VERSION)