diff --git a/CHANGELOG.md b/CHANGELOG.md index e7dc3cd..a5d60cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog +## [1.2.1] - 30/06/2024 +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security +- move to latest urllib3 release for security improvments + ## [1.2.0] - 30/06/2024 ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c3763bf..89b7322 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,3 +26,12 @@ pip install pytest pytest-cov pytest-integration wheel ``` pytest ``` + +* Release +``` +pip install --upgrade pip +pip install setuptools wheel twine +python setup.py sdist bdist_wheel +twine check dist/* +twine upload dist/* +``` \ No newline at end of file diff --git a/gitlabber/__init__.py b/gitlabber/__init__.py index 58d478a..3f262a6 100644 --- a/gitlabber/__init__.py +++ b/gitlabber/__init__.py @@ -1 +1 @@ -__version__ = '1.2.0' +__version__ = '1.2.1'