From bb27b55cb50872dd22654d47a0770302d5e95ec2 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Sun, 9 Apr 2023 13:26:57 +0100 Subject: [PATCH] Wilderness Release v0.1.10 * Rename `_argparse.py` module to `argparse_wrappers.py` * Ensure PyTest doesn't think certain classes are test cases * Various code quality fixes (thanks to @kloczek) --- CHANGELOG.md | 6 ++++++ wilderness/__version__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ce3bd6..47f5d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 0.1.10 + +* Rename `_argparse.py` module to `argparse_wrappers.py` +* Ensure PyTest doesn't think certain classes are test cases +* Various code quality fixes (thanks to @kloczek) + ## Version 0.1.9 * Add MANIFEST.in file to package for more complete packaging (thanks to diff --git a/wilderness/__version__.py b/wilderness/__version__.py index 3694691..abef6cc 100644 --- a/wilderness/__version__.py +++ b/wilderness/__version__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (0, 1, 9) +VERSION = (0, 1, 10) __version__ = ".".join(map(str, VERSION))