Skip to content

Commit

Permalink
Release v3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrossinek committed Jan 13, 2022
1 parent e0d010e commit 842f6ce
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [3.5.0] - 2022-01-13

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

### **News:** coBib v4.0 will come with a new UI!
The plan is to switch to [rich][rich] and [textual][textual] instead of the current curses TUI.
This will open up some great possibilities for a much more modern UI.

However, this change will require some *major* refactoring including breaking changes of the API
and some of the user configuration options. It will also be a rather drastic change in style.
Thus, I will attempt to support v3.5 with bugfix releases until 1.1.2023

It will likely take a few months until v4.0 gets released but I am starting development on it now.
You can follow the progress here: {https://gitlab.com/mrossinek/cobib/-/issues/78}

[rich]: https://github.com/Textualize/rich
[textual]: https://github.com/Textualize/textual

### Added
- the configuration loading can be disabled via the environment variable `COBIB_CONFIG`
- values which disable the loading entirely are: `"", 0, f, false, nil, none`
Expand Down Expand Up @@ -590,7 +609,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/mrossinek/cobib/-/compare/v3.4.0...master
[Unreleased]: https://gitlab.com/mrossinek/cobib/-/compare/v3.5.0...master
[3.5.0]: https://gitlab.com/mrossinek/cobib/-/compare/v3.5.0
[3.4.0]: https://gitlab.com/mrossinek/cobib/-/compare/v3.4.0
[3.3.2]: https://gitlab.com/mrossinek/cobib/-/compare/v3.3.2
[3.3.1]: https://gitlab.com/mrossinek/cobib/-/compare/v3.3.1
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ As such it follows some basic design goals:
* **command-line and TUI support**: all features are available through the command-line as well as a curses-based TUI.


### **News:** coBib v4.0 will come with a new UI!
The plan is to switch to [rich][rich] and [textual][textual] instead of the current curses TUI.
This will open up some great possibilities for a much more modern UI.

However, this change will require some *major* refactoring including breaking changes of the API
and some of the user configuration options. It will also be a rather drastic change in style.
Thus, I will attempt to support v3.5 with bugfix releases until 1.1.2023

It will likely take a few months until v4.0 gets released but I am starting development on it now.
You can follow the progress here: {https://gitlab.com/mrossinek/cobib/-/issues/78}

[rich]: https://github.com/Textualize/rich
[textual]: https://github.com/Textualize/textual

## Installation

For all common purposes you can install coBib via `pip`:
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 2021-12-01 v3.4.0
.TH COBIB 1 2022-01-13 v3.5.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__ = "3.4.0"
__version__ = "3.5.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 842f6ce

Please sign in to comment.