From 1733fece104d6a635b27c92e509e5521d42a152b Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Sat, 9 Jul 2022 10:25:26 +0200 Subject: [PATCH] :bookmark: release v1.3.0 --- CHANGELOG | 14 ++++++++++++++ bibtexparser/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 87914a19..c1fa261a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +v1.3.0 +====== + +Most of these changes come from @MiWeiss personal fork, as one, +hence have a commit id instead of a PR number in CHANGELOG. + +* Support for python 3.10 +* Removing unused dependencies (fb86407 and d4e3f42) +* No empty extra lines at end of generated files (f84e318) +* Allow capital AND when splitting author list (a8527ff) +* Fix problem in `homogenize_latex_encoding` when authors are lists (528714c) +* Long description in setup.py (#304) +* Typo fixes (2b2c8ee, 11340f3) + v1.2.0 ====== diff --git a/bibtexparser/__init__.py b/bibtexparser/__init__.py index 2c755600..325e709a 100644 --- a/bibtexparser/__init__.py +++ b/bibtexparser/__init__.py @@ -25,7 +25,7 @@ 'loads', 'load', 'dumps', 'dump', 'bibdatabase', 'bparser', 'bwriter', 'bibtexexpression', 'latexenc', 'customization', ] -__version__ = '1.2.0' +__version__ = '1.3.0' from . import bibdatabase, bibtexexpression, bparser, bwriter, latexenc, customization