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