From ab9cd36adb59cb5cde52120989901c855c7cfd7e Mon Sep 17 00:00:00 2001 From: Amethyst Reese Date: Mon, 20 Nov 2023 22:42:18 -0800 Subject: [PATCH] Version bump v2.0 --- CHANGELOG.md | 19 +++++++++++++++++++ dotlink/__version__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7aa783..b8728fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ dotlink [![Generated by attribution][attribution-badge]][attribution-url] +v2.0 +---- + +Major release + +- Total rewrite, using Python 3.8 syntax features +- Changed config format to `dest [= src]` +- Changed config filename to `.dotlink` or `dotlink` +- Use click for CLI arg parsing +- Use modern Python features and metadata +- Support for `--plan` or `--dry-run` +- Dropped `--rsync` option in favor of new ssh+tar stream + +```text +$ git shortlog -s v2.0b1...v2.0 + 3 Amethyst Reese +``` + + v2.0b1 ------ diff --git a/dotlink/__version__.py b/dotlink/__version__.py index 0567e27..9055ca1 100644 --- a/dotlink/__version__.py +++ b/dotlink/__version__.py @@ -4,4 +4,4 @@ Do not edit manually. Get more info at https://attribution.omnilib.dev """ -__version__ = "2.0b1" +__version__ = "2.0"