From 837bfcbb49b8e1a30ee02c620f5cfe143375ca79 Mon Sep 17 00:00:00 2001 From: Alessandro Ogier Date: Tue, 25 Feb 2020 23:04:30 +0100 Subject: [PATCH] 0.1.1 --- CHANGELOG.md | 2 +- chachacha/__init__.py | 2 +- tests/test_changelog_cli.py | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9071dc1..36b80d5 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] +## [0.1.1] - 2020-02-25 ### Fixed diff --git a/chachacha/__init__.py b/chachacha/__init__.py index 3dc1f76..485f44a 100644 --- a/chachacha/__init__.py +++ b/chachacha/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/tests/test_changelog_cli.py b/tests/test_changelog_cli.py index 1d546ee..9e4cbf0 100644 --- a/tests/test_changelog_cli.py +++ b/tests/test_changelog_cli.py @@ -8,10 +8,6 @@ from chachacha.drivers.kac import DEFAULT_HEADER -def test_version(): - assert __version__ == "0.1.0" - - def test_release_major(tmp_path): os.chdir(tmp_path) runner = CliRunner()