From 9ca0a804c6e7b064189caed9585bb7b0a310de10 Mon Sep 17 00:00:00 2001 From: Nicolas Granger Date: Sat, 5 May 2018 14:56:17 +0200 Subject: [PATCH] Finalizing release 0.8. --- CHANGELOG.txt | 17 +++++++++++++++++ setup.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.txt diff --git a/CHANGELOG.txt b/CHANGELOG.txt new file mode 100644 index 0000000..98dc718 --- /dev/null +++ b/CHANGELOG.txt @@ -0,0 +1,17 @@ +# Changelog +All notable changes to this project will be documented in this file. + +## [0.8] - 2018-05-05 +### Added +- added CHANGELOG +- added simple debugging functions in `seqtools.instrument` +- added new sequence manipulation functions: interleaving, unbatching, + prefetching + +### Deprecated +- `eager_iter` is superseeded by `prefetch` +- `reindex` renamed to `gather` or its alias `take` to match ther libraries. + +### Fixed +- Fixed edge cases with multithreaded evaluation. +- Miscellaneous small errors diff --git a/setup.py b/setup.py index b1054f1..8d76388 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def run_tests(self): license="MPL2", url="https://github.com/nlgranger/SeqTools", packages=['seqtools'], - version='0.8.dev', + version='0.8', install_requires=[ 'typing;python_version<"3.6"', 'backports.weakref;python_version<"3"',