mirror of
https://github.com/dtomlinson91/csops.git
synced 2025-12-21 21:35:45 +00:00
chore: prepare release v0.2.0
This commit is contained in:
15
CHANGELOG.md
15
CHANGELOG.md
@@ -3,6 +3,21 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
<!-- marker -->
|
<!-- marker -->
|
||||||
|
## [v0.2.0](https://github.com/dtomlinson91/csops/commits/v0.2.0) - 2022-01-17
|
||||||
|
<small>[Compare with v0.1.0](https://github.com/dtomlinson91/csops/compare/v0.1.0..v0.2.0)</small>
|
||||||
|
|
||||||
|
### ✨ 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
|
## [v0.1.0](https://github.com/dtomlinson91/csops/commits/v0.1.0) - 2022-01-17
|
||||||
|
|
||||||
### ✨ Features
|
### ✨ Features
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
"""Module containing the version of csops."""
|
"""Module containing the version of csops."""
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.2.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "csops"
|
name = "csops"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Daniel Tomlinson <dtomlinson@panaetius.co.uk>"]
|
authors = ["Daniel Tomlinson <dtomlinson@panaetius.co.uk>"]
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -5,4 +5,7 @@ duty==0.7.0; python_version >= "3.6"
|
|||||||
failprint==0.8.0; python_version >= "3.6"
|
failprint==0.8.0; python_version >= "3.6"
|
||||||
jinja2==3.0.3; python_version >= "3.6"
|
jinja2==3.0.3; python_version >= "3.6"
|
||||||
markupsafe==2.0.1; 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"
|
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"
|
||||||
|
|||||||
6
setup.py
6
setup.py
@@ -7,12 +7,15 @@ packages = \
|
|||||||
package_data = \
|
package_data = \
|
||||||
{'': ['*']}
|
{'': ['*']}
|
||||||
|
|
||||||
|
install_requires = \
|
||||||
|
['panaetius>=2.3.4,<3.0.0']
|
||||||
|
|
||||||
entry_points = \
|
entry_points = \
|
||||||
{'console_scripts': ['csops = csops.run:run']}
|
{'console_scripts': ['csops = csops.run:run']}
|
||||||
|
|
||||||
setup_kwargs = {
|
setup_kwargs = {
|
||||||
'name': 'csops',
|
'name': 'csops',
|
||||||
'version': '0.1.0',
|
'version': '0.2.0',
|
||||||
'description': '',
|
'description': '',
|
||||||
'long_description': None,
|
'long_description': None,
|
||||||
'author': 'Daniel Tomlinson',
|
'author': 'Daniel Tomlinson',
|
||||||
@@ -22,6 +25,7 @@ setup_kwargs = {
|
|||||||
'url': None,
|
'url': None,
|
||||||
'packages': packages,
|
'packages': packages,
|
||||||
'package_data': package_data,
|
'package_data': package_data,
|
||||||
|
'install_requires': install_requires,
|
||||||
'entry_points': entry_points,
|
'entry_points': entry_points,
|
||||||
'python_requires': '>=3.7,<4.0',
|
'python_requires': '>=3.7,<4.0',
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user