From 584b950703dfafc06a2f3c819f0c8e7ac6df8da8 Mon Sep 17 00:00:00 2001 From: Simon Biewald Date: Sun, 16 Jun 2019 22:37:09 +0200 Subject: [PATCH] fix changelog of 0.7.0 --- changelog.rst | 5 +++-- xtea/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/changelog.rst b/changelog.rst index a32901e..a7c88a5 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,8 +1,8 @@ Changelog --------- -(dev) Version 0.7.0, former 0.6.1; ... -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Version 0.7.1, former 0.6.1 / 0.7.0; Jun 16, 2018 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Improved tests - PEP8-style formatting @@ -14,6 +14,7 @@ Changelog internal partition size (in bits) as per PEP-272. - Python 3: An optional C extension improves speed upto a factor of 10. - [BREAKING CHANGE] `block_size` and `key_size` is now in bytes. +- Skipped 0.7.0 with (unreleased) Version 0.6.0; Oct 16, 2016 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/xtea/__init__.py b/xtea/__init__.py index 77448b2..6b6137d 100644 --- a/xtea/__init__.py +++ b/xtea/__init__.py @@ -36,7 +36,7 @@ "MODE_CTR", "MODE_OFB", "MODE_PGP", "key_size", "block_size") -__version__ = "0.7.0" +__version__ = "0.7.1" __author__ = "Simon Biewald" __email__ = "simon@fam-biewald.de" __license__ = "Public Domain"