From cea7125bf7d898e12ffe6fca077171b5d21d44e7 Mon Sep 17 00:00:00 2001 From: Dorian Lesbre Date: Fri, 12 Apr 2024 20:33:26 +0200 Subject: [PATCH] Update version number to 1.3.2 --- CHANGELOG.md | 2 +- bibtexautocomplete/utils/constants.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b161e72..fddd083 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Version 1.3.2 - 2024-04-12 - +- Add `-b / --by-entrytype` option (issue #13). - Fix `-c / -C` flags only filtering queries and not results since 1.3.0 - Fix output of some error messages not displaying entry ID diff --git a/bibtexautocomplete/utils/constants.py b/bibtexautocomplete/utils/constants.py index 9d36238..32344da 100644 --- a/bibtexautocomplete/utils/constants.py +++ b/bibtexautocomplete/utils/constants.py @@ -14,9 +14,9 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_PATCH = 1 +VERSION_PATCH = 2 -VERSION_DATE = "2024-02-20" +VERSION_DATE = "2024-04-12" VERSION = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) VERSION_STR = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}"