Skip to content

Commit a9c47a6

Browse files
authored
🔖 Release 1.4.0 (#320)
* Bump Version, Change Contact Email, Minor README changes * CHANGELOG * Minor change to RELEASE instructions
1 parent cc434af commit a9c47a6

5 files changed

Lines changed: 23 additions & 6 deletions

File tree

CHANGELOG

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
v1.4.0
2+
======
3+
4+
Breaking Changes
5+
----------------
6+
* Using common strings in string interpolation is now the default (#311 by @MiWeiss).
7+
See the PR for more details, and how to fall back to old behavior.
8+
9+
New Features / Improvements
10+
---------------------------
11+
* Add option to adjust alignment of text of multi-line values. (#290 by @michaelfruth)
12+
* Raise warning if parser is used multiple times (#312 by @mrn97),
13+
which leads to a merged library. Set `parser.expect_multiple_parse = True` to disable the warning.
14+
* Allow preservation of existing order of entry fields in writer (#317 by @michaelfruth)
15+
116
v1.3.0
217
======
318

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Upgrading
2121
---------
2222

2323
Please, read the changelog before upgrading regarding API modifications.
24-
Prior version 1.0, we do not hesitate to modify the API to get the best API from your feedbacks.
2524

2625
License
2726
-------
@@ -40,4 +39,6 @@ The original source code was part of bibserver from `OKFN <http://github.com/okf
4039

4140
The parser evolved to a new core based on pyparsing.
4241

43-
News (July 7h, 2022): This library has a new maintainer (`@MiWeiss <https://github.com/MiWeiss>`_). No large changes are planned for the immediate future; the immediate goal is to reduce the backlog of open issues and PRs.
42+
News (July 7h, 2022): This library has a new maintainer (`@MiWeiss <https://github.com/MiWeiss>`_).
43+
Versions 1.x will be mostly bugfixes and maintenance.
44+
In the meantime, we are working on a new version 2.0.0 which will be a complete rewrite of the library.

RELEASE

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ How to release
33

44
* Update CHANGELOG
55
* Update version in __init__.py
6-
* Commit and open PR on Github to see that all tests pass
6+
* Commit and open PR on Github to see that all tests pass,
7+
and then merge the PR.
78
* Check out master locally
89
* Build wheel
910
python setup.py sdist upload
@@ -13,6 +14,6 @@ How to release
1314
twine upload --repository testpypi dist/*
1415
* Upload to pypi
1516
twine check dist/*
16-
* Create release on Github and Merge PR
17+
* Create release on Github
1718
* Verify docs are automatically updated
1819

bibtexparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'loads', 'load', 'dumps', 'dump', 'bibdatabase',
2626
'bparser', 'bwriter', 'bibtexexpression', 'latexenc', 'customization',
2727
]
28-
__version__ = '1.3.0'
28+
__version__ = '1.4.0'
2929

3030
from . import bibdatabase, bibtexexpression, bparser, bwriter, latexenc, customization
3131

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def load_readme():
2424
url="https://github.com/sciunto-org/python-bibtexparser",
2525
author="Francois Boulogne and other contributors",
2626
license="LGPLv3 or BSD",
27-
author_email="devel@sciunto.org",
27+
author_email="code@mweiss.ch",
2828
description="Bibtex parser for python 3",
2929
long_description_content_type="text/x-rst",
3030
long_description=load_readme(),

0 commit comments

Comments
 (0)