From 99a7da395b59d1182a6ce4592eee12b9b2ad830a Mon Sep 17 00:00:00 2001 From: Anders Jensen <667117+JohnDoee@users.noreply.github.com> Date: Sat, 17 Feb 2024 11:26:52 +0100 Subject: [PATCH] bumped version, updated changelog --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- src/autotorrent/__version__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65cc205..37d2410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.3.0] - 2024-02-17 + +### Add + +- Dockerfile and docker support #51 (thanks kannibalox) + +### Change + +- Moved to os.scanfile for more efficient disk scanning #45 (thanks kannibalox) +- Using prefix tree when inserting into sqlite for more efficiency #41 (thanks kannibalox) + +### Bugfix + +- reflink never actually worked #40 (Thanks undrog) + ## [1.2.3] - 2022-08-13 ### Add diff --git a/README.md b/README.md index 150c707..cb7af0e 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Assortment of stuff that is planned. Assortment of stuff I am not sure I can do much about. -- [ ] Transmission (3.x) does not parse all emojis correctly and will return the wrong filename. [This is fixed in Transmission 4.0.2.](https://github.com/transmission/transmission/pull/5096). +- [ ] Transmission (3.x) does not parse all emojis correctly and will return the wrong filename. [This is fixed in Transmission 4.0.2.](https://github.com/transmission/transmission/pull/5096) ## License diff --git a/src/autotorrent/__version__.py b/src/autotorrent/__version__.py index 10aa336..67bc602 100644 --- a/src/autotorrent/__version__.py +++ b/src/autotorrent/__version__.py @@ -1 +1 @@ -__version__ = "1.2.3" +__version__ = "1.3.0"