From 1317908e0ac4a16d33434f2c1951ac9e18816d68 Mon Sep 17 00:00:00 2001 From: Max Rossmannek Date: Wed, 1 May 2024 15:45:58 +0200 Subject: [PATCH] Release v5.0.1 --- CHANGELOG.md | 8 +++++++- cobib.1 | 2 +- src/cobib/__init__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e355695..339ebc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [5.0.1] - 2024-05-01 + +Pypi: https://pypi.org/project/cobib/5.0.1/ + ### Fixed - the ability to use an empty string as the separator in `config.database.format.label_suffix` (#138) @@ -995,7 +1000,8 @@ Note: this release was not marked MAJOR because this is still a WIP and early - initial version with a basic `sqlite3`-based database -[Unreleased]: https://gitlab.com/cobib/cobib/-/compare/v5.0.0...master +[Unreleased]: https://gitlab.com/cobib/cobib/-/compare/v5.0.1...master +[5.0.1]: https://gitlab.com/cobib/cobib/-/tags/v5.0.1 [5.0.0]: https://gitlab.com/cobib/cobib/-/tags/v5.0.0 [4.5.0]: https://gitlab.com/cobib/cobib/-/tags/v4.5.0 [4.4.0]: https://gitlab.com/cobib/cobib/-/tags/v4.4.0 diff --git a/cobib.1 b/cobib.1 index 77a2b7b..0e6eb90 100644 --- a/cobib.1 +++ b/cobib.1 @@ -1,4 +1,4 @@ -.TH COBIB 1 2024-04-28 v5.0.0 +.TH COBIB 1 2024-05-01 v5.0.1 .SH NAME coBib \- Console-based Bibliography Management .SH SYNOPSIS diff --git a/src/cobib/__init__.py b/src/cobib/__init__.py index 8ebadeb..05c50f5 100644 --- a/src/cobib/__init__.py +++ b/src/cobib/__init__.py @@ -6,7 +6,7 @@ import subprocess from pathlib import Path -__version__ = "5.0.0" +__version__ = "5.0.1" if (Path(__file__).parent.parent.parent / ".git").exists(): # if installed from source, append HEAD commit SHA to version info as metadata