From 4fdde5fe2acb5b769215682e58e77df86f7c6da3 Mon Sep 17 00:00:00 2001 From: Danila Vershinin Date: Mon, 29 Jan 2024 00:50:00 +0800 Subject: [PATCH] Update CHANGELOG and version for 3.5.0 release This commit updates the CHANGELOG to reflect the main improvements and fixes for version 3.5.0, such as enhanced zip support for extraction. Also, it updates the version number in the `__about__.py` file accompanying the new release preparations. --- CHANGELOG.md | 5 +++++ src/lastversion/__about__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 147c1b31..a2f4cd36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [3.5.0] - 2024-01-29 +### Fixed +* Improved and added zip support in extract command by @lxl66566 +* The `-gt` CLI did not recognize first argument as repo in some cases + ## [3.4.6] - 2023-12-26 ### Fixed * Looking at more tags in GitLab API to fix #135 diff --git a/src/lastversion/__about__.py b/src/lastversion/__about__.py index 59642450..8256878a 100644 --- a/src/lastversion/__about__.py +++ b/src/lastversion/__about__.py @@ -1,3 +1,3 @@ """Package metadata""" -__version__ = "3.4.6" +__version__ = "3.5.0" __self__ = "dvershinin/lastversion"