From 0fd751aad241e3af1c02bb3d8889f8f6519ac92e Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Thu, 27 Jan 2022 01:44:22 +0000 Subject: [PATCH] chore: release v0.2.1 --- CHANGELOG.md | 14 ++++++++++++++ csops/_version.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9622f60..207fcaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. +## [v0.2.1](https://github.com/dtomlinson91/csops/commits/v0.2.1) - 2022-01-27 +[Compare with v0.2.0](https://github.com/dtomlinson91/csops/compare/v0.2.0..v0.2.1) + +### ✨ Features + +- Add `--version` flag ([a375ac1](https://github.com/dtomlinson91/csops/commit/a375ac18075341ffc3cf410d26837d327d682ea7)) + +### 📘 Documentation + +- Reformat environment variable example ([1a90618](https://github.com/dtomlinson91/csops/commit/1a9061880814d6171f599fc3a0d14eead0514d9a)) + +### 🛠 Refactor/Improvement + +- Disable spawning a shell on subprocess ([91519e2](https://github.com/dtomlinson91/csops/commit/91519e232d1f1cfe19fd13a7a0ac45c80506195c)) ## [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) diff --git a/csops/_version.py b/csops/_version.py index 6820c8e..9b8626e 100644 --- a/csops/_version.py +++ b/csops/_version.py @@ -1,3 +1,3 @@ """Module containing the version of csops.""" -__version__ = "0.2.0" +__version__ = "0.2.1" diff --git a/pyproject.toml b/pyproject.toml index 8b22f90..f15199d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "csops" -version = "0.2.0" +version = "0.2.1" description = "" authors = ["Daniel Tomlinson "] diff --git a/setup.py b/setup.py index e64336b..78a23d9 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ entry_points = \ setup_kwargs = { 'name': 'csops', - 'version': '0.2.0', + 'version': '0.2.1', 'description': '', 'long_description': None, 'author': 'Daniel Tomlinson',