From b752a10165d575290fa16e2c5d95f35ce377d033 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Mon, 17 Jan 2022 23:17:23 +0000 Subject: [PATCH] chore: prepare release v0.2.0 --- CHANGELOG.md | 15 +++++++++++++++ csops/_version.py | 2 +- pyproject.toml | 2 +- requirements.txt | 4 +++- requirements_dev.txt | 3 +++ setup.py | 6 +++++- 6 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 673e871..9622f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. +## [v0.2.0](https://github.com/dtomlinson91/csops/commits/v0.2.0) - 2022-01-17 +[Compare with v0.1.0](https://github.com/dtomlinson91/csops/compare/v0.1.0..v0.2.0) + +### ✨ Features + +- Add user configuration of `gcp_kms_key` #1 ([f654d19](https://github.com/dtomlinson91/csops/commit/f654d199ee54f487842e7fd89a6e8a4c5f3d55ce)) + +### 📘 Documentation + +- Update README with usage example ([c10a402](https://github.com/dtomlinson91/csops/commit/c10a40273bb6ace06a4b1640488045d21dcd9ee1)) +- Update README with config example #1 ([ebff9e9](https://github.com/dtomlinson91/csops/commit/ebff9e901fb44d94674a8845cd341e5d5f5fed2c)) + +### 🧱 Build + +- Add panaetius 2.3.4 ([573ab8c](https://github.com/dtomlinson91/csops/commit/573ab8ca2d414d90ea101507c5313b932eb29413)) ## [v0.1.0](https://github.com/dtomlinson91/csops/commits/v0.1.0) - 2022-01-17 ### ✨ Features diff --git a/csops/_version.py b/csops/_version.py index 9253d8b..6820c8e 100644 --- a/csops/_version.py +++ b/csops/_version.py @@ -1,3 +1,3 @@ """Module containing the version of csops.""" -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index c83aebb..8b22f90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "csops" -version = "0.1.0" +version = "0.2.0" description = "" authors = ["Daniel Tomlinson "] diff --git a/requirements.txt b/requirements.txt index 8b13789..cefa2af 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,3 @@ - +panaetius==2.3.4; python_version >= "3.7" and python_version < "4.0" +pyyaml==6.0; python_version >= "3.7" and python_version < "4.0" +toml==0.10.2; python_version >= "3.7" and python_full_version < "3.0.0" and python_version < "4.0" or python_version >= "3.7" and python_version < "4.0" and python_full_version >= "3.3.0" diff --git a/requirements_dev.txt b/requirements_dev.txt index 902281a..a77076d 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -5,4 +5,7 @@ duty==0.7.0; python_version >= "3.6" failprint==0.8.0; python_version >= "3.6" jinja2==3.0.3; python_version >= "3.6" markupsafe==2.0.1; python_version >= "3.6" +panaetius==2.3.4; python_version >= "3.7" and python_version < "4.0" ptyprocess==0.7.0; sys_platform != "win32" and python_version >= "3.6" +pyyaml==6.0; python_version >= "3.7" and python_version < "4.0" +toml==0.10.2; python_version >= "3.7" and python_full_version < "3.0.0" and python_version < "4.0" or python_version >= "3.7" and python_version < "4.0" and python_full_version >= "3.3.0" diff --git a/setup.py b/setup.py index d66d056..e64336b 100644 --- a/setup.py +++ b/setup.py @@ -7,12 +7,15 @@ packages = \ package_data = \ {'': ['*']} +install_requires = \ +['panaetius>=2.3.4,<3.0.0'] + entry_points = \ {'console_scripts': ['csops = csops.run:run']} setup_kwargs = { 'name': 'csops', - 'version': '0.1.0', + 'version': '0.2.0', 'description': '', 'long_description': None, 'author': 'Daniel Tomlinson', @@ -22,6 +25,7 @@ setup_kwargs = { 'url': None, 'packages': packages, 'package_data': package_data, + 'install_requires': install_requires, 'entry_points': entry_points, 'python_requires': '>=3.7,<4.0', }