Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
dlesbre committed Oct 27, 2024
1 parent a76f95c commit 509afe8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 19 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Change Log

## Version ?.?.? - Unreleased
## Version 1.4.0 - 2024-10-27

- Add command-line tab completion for flags and some choices (field names)
- Simplify and documents ways to call this script from python
- Fix 404 warnings on DOI not found for crossref
- Add `--sf --start-from` flag and clarify message shown on interrupt, plus show
instructions on how to resume. Also display a hint that BTAC can be interrupted
after 5 minutes if less than half of all entries are completed.
- Progress bar now only show the number of completed entries, not queries (issue
[#19](https://github.com/dlesbre/bibtex-autocomplete/issues/19))
after 5 minutes if less than half of all entries are completed (issue
[#18](https://github.com/dlesbre/bibtex-autocomplete/issues/18)).
- Progress bar now only show the number of completed entries, not queries
(discussion [#17](https://github.com/dlesbre/bibtex-autocomplete/discussions/17)
and issue [#19](https://github.com/dlesbre/bibtex-autocomplete/issues/19))
- Skip queries to sources if they lag behind (>=10 queries remain or >=60s
delay between queries) when 2/3rds of the other sources have completed. This
avoids having a single source slow down btac considerably. Add the
Expand Down
6 changes: 3 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Dorian"
orcid: "https://orcid.org/0000-0002-4328-6753"
title: "Bibtex autocomplete"
version: 1.3.0
doi: 10.5281/zenodo.10621834
date-released: 2024-02-05
version: 1.4.0
doi: 10.5281/zenodo.13998418
date-released: 2024-10-27
url: "https://github.com/dlesbre/bibtex-autocomplete"
9 changes: 0 additions & 9 deletions Dockerfile

This file was deleted.

6 changes: 3 additions & 3 deletions bibtexautocomplete/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
DESCRIPTION = "Script to autocomplete bibtex files by polling online databases"

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

VERSION_DATE = "2024-08-07"
VERSION_DATE = "2024-10-27"

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

0 comments on commit 509afe8

Please sign in to comment.