Skip to content

Commit

Permalink
Version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dlesbre committed Feb 20, 2024
1 parent ece9c28 commit 026427e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## Version 1.3.1 - 2024-02-20

- Add `-D --diff` flag
- Changes to verbose mode output:
- display per source query counter under the
progress bar (hoping to make this even prettier once
https://github.com/rsalmei/alive-progress/issues/188 gets resolved)
- display source list on a new line in final output
- Fix a new error occurring when checking DOIs (issue #12)
- Officially support python 3.12
- Build system change: now using `pyproject.toml` instead of `setup.py` and
[ruff](https://github.com/astral-sh/ruff) instead of black, isort and flake8.

## Version 1.3.0 - 2024-02-05

- Add https://openalex.org/ as a source
Expand Down
4 changes: 2 additions & 2 deletions bibtexautocomplete/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

VERSION_MAJOR = 1
VERSION_MINOR = 3
VERSION_PATCH = 0
VERSION_PATCH = 1

VERSION_DATE = "2024-02-05"
VERSION_DATE = "2024-02-20"

VERSION = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
VERSION_STR = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}"
Expand Down

0 comments on commit 026427e

Please sign in to comment.