Skip to content

Commit

Permalink
Release v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrossinek committed May 20, 2023
1 parent 7a43d12 commit 1af081b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [4.0.0] - 2023-05-20

Pypi: https://pypi.org/project/cobib/3.5.5/

### **Breaking Changes**
- Configuration settings can no longer be set by item access and instead must
use attribute syntax. For example you need to change:
Expand Down Expand Up @@ -60,6 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- the warning triggered upon setting `config.database.format.month` which got removed in [3.1.0]
- Python 3.7 is no longer supported


## [3.5.5] - 2023-04-11

Pypi: https://pypi.org/project/cobib/3.5.5/
Expand Down Expand Up @@ -704,7 +710,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/v3.5.5...master
[Unreleased]: https://gitlab.com/cobib/cobib/-/compare/v4.0.0...master
[4.0.0]: https://gitlab.com/cobib/cobib/-/compare/v4.0.0
[3.5.5]: https://gitlab.com/cobib/cobib/-/compare/v3.5.5
[3.5.4]: https://gitlab.com/cobib/cobib/-/compare/v3.5.4
[3.5.3]: https://gitlab.com/cobib/cobib/-/compare/v3.5.3
Expand Down
2 changes: 1 addition & 1 deletion cobib.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH COBIB 1 UNRELEASED v4.0.0a
.TH COBIB 1 2023-05-20 v4.0.0
.SH NAME
coBib \- Console-based Bibliography Management
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion src/cobib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import subprocess
from pathlib import Path

__version__ = "4.0.0a"
__version__ = "4.0.0"

if (Path(__file__).parent.parent.parent / ".git").exists():
# if installed from source, append HEAD commit SHA to version info as metadata
Expand Down

0 comments on commit 1af081b

Please sign in to comment.