From 207eb78a1774a88ba8f3e1ff56c097d6e73e4721 Mon Sep 17 00:00:00 2001 From: Omer Korner Date: Thu, 22 Dec 2022 13:06:23 +0200 Subject: [PATCH] Bump version to v2.1 --- CHANGELOG.md | 18 ++++++++++++++++++ setup.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90421a4..a27ea3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## v2.1 - 2022-12-22 + +Includes: + +- Remove the assert_never helper ([#16](https://github.com/octoenergy/xocto/pull/16)) +- Add common pact testing test fixtures #18 ([#18](https://github.com/octoenergy/xocto/pull/18)) +- Add S3 reusable code ([#19](https://github.com/octoenergy/xocto/pull/19)) + +Starting from this release, this project will be versioned using [Semantic Versioning ](https://semver.org/): + +> Given a version number MAJOR.MINOR.PATCH, increment the: +> * MAJOR version when you make incompatible API changes +> * MINOR version when you add functionality in a backwards compatible manner +> * PATCH version when you make backwards compatible bug fixes +> * Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format. + +In practice this has been happening already, but we are now making it official. + ## v2.0 - 2022-07-31 Includes: diff --git a/setup.py b/setup.py index 1c6125f..239d443 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ REPO_ROOT = path.abspath(path.dirname(__file__)) -VERSION = "3.0" +VERSION = "2.1" with open(path.join(REPO_ROOT, "README.md"), encoding="utf-8") as f: long_description = f.read()