From 23371e8431aed67e7f1da8e73f821c7eb6c40267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Thu, 9 Apr 2020 09:31:36 +0200 Subject: [PATCH] Prepare release 2.1.0 --- CHANGELOG.md | 5 +++-- autohooks/__version__.py | 4 +++- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b290eeff..5f81c159 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [2.1.0] - 2020-04-09 ### Added @@ -33,10 +33,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#49](https://github.com/greenbone/autohooks/pull/49) ### Removed + * Removed code relying on setuptools and switched to a full poetry build process [#54](https://github.com/greenbone/autohooks/pull/54) -[Unreleased]: https://github.com/greenbone/autohooks/compare/v2.0.0...master +[2.1.0]: https://github.com/greenbone/autohooks/compare/v2.0.0...v2.1.0 ## [2.0.0] - 2019-11-20 diff --git a/autohooks/__version__.py b/autohooks/__version__.py index 2e93db8a..d85f6f06 100644 --- a/autohooks/__version__.py +++ b/autohooks/__version__.py @@ -1,3 +1,5 @@ # pylint: disable=invalid-name -__version__ = "2.0.1a0" +# THIS IS AN AUTOGENERATED FILE. DO NOT TOUCH! + +__version__ = "2.1.0" diff --git a/pyproject.toml b/pyproject.toml index b068c8cd..c2ed20c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "autohooks" -version = "2.0.1a0" +version = "2.1.0" description = "Library for managing git hooks" authors = ["Greenbone Networks GmbH "] license = "GPL-3.0-or-later"