1 parent 9a57593 commit 9ed1e8aCopy full SHA for 9ed1e8a
2 files changed
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Change Log
2
3
+## Version 1.4.3 - 2025-08-24
4
+
5
+- Cleaner error message when failing to decode latex from input files
6
+ (issue [#20](https://github.com/dlesbre/bibtex-autocomplete/issues/20)).
7
8
## Version 1.4.2 - 2025-06-07
9
10
- Fix an error when calling `load_entry` via the python API.
bibtexautocomplete/utils/constants.py
@@ -15,9 +15,9 @@
15
16
VERSION_MAJOR = 1
17
VERSION_MINOR = 4
18
-VERSION_PATCH = 2
+VERSION_PATCH = 3
19
20
-VERSION_DATE = "2025-06-07"
+VERSION_DATE = "2025-08-24"
21
22
VERSION = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
23
VERSION_STR = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}"
0 commit comments