From 3041c6303fb271ce60b13b90babb961f4c5ab663 Mon Sep 17 00:00:00 2001 From: Dan Puttick Date: Thu, 19 Jan 2017 17:48:14 -0500 Subject: [PATCH] Update changelog to version 2.1 --- CHANGELOG | 9 --------- CHANGELOG.md | 19 +++++++++++++++++++ setup.py | 2 +- 3 files changed, 20 insertions(+), 10 deletions(-) delete mode 100644 CHANGELOG create mode 100644 CHANGELOG.md diff --git a/CHANGELOG b/CHANGELOG deleted file mode 100644 index 7a1ad90..0000000 --- a/CHANGELOG +++ /dev/null @@ -1,9 +0,0 @@ -Changelog -========= - -2.1.0 ---- - -New features: - -Fixes: diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..df1a217 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +Changelog +========= + +2.1.0 +--- + +New features: +- Dropped Python 2.7 support: PyCIRCLean is now Python 3.3+ only +- Tests are now easier to write and run: we have support for pytest and tox! +- More documentation: both docstrings and more detailed readmes +- Added more types of examples for testing +- The Travis build now runs in ~10 minutes vs. ~30 minutes before + + +Fixes: +- Extension matching now catches lower/upper case errors +- Fixed remaining python 3 issues with filecheck.py +- Fixed support for .rtf files +- Many other small filetype related fixes diff --git a/setup.py b/setup.py index 20b4454..c11f64d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup( name='kittengroomer', - version='2.0.2', + version='2.1', author='Raphaël Vinot', author_email='raphael.vinot@circl.lu', maintainer='Raphaël Vinot',