Skip to content

Commit

Permalink
v0.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
shapiromatron committed Jul 13, 2023
1 parent 1278896 commit f5cc2a9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
History
=======

v0.8.0 (2023-07-13)
-------------------

Breaking changes:

* Update minimum python version from 3.6 to 3.8
* Improve URL parsing to be more robust and consistent with the spec; saved as a plural "urls" dictionary key instead of the singular "url" (@scott-8/shapiromatron #52)
* Throw a `rispy.paser.ParseError` instead of a IOError for invalid parsing (@shapiromatron #54)

Additional updates:

* Write RIS unknown tags (@simon-20 #50)

Tooling updates:

* Support and test python 3.8 through 3.11
* Update black
* Switch to ruff from flake8 + isort
* Switch to flit
* Add basic coverage reports to github actions

v0.7.1 (2021-06-01)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion rispy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .parser import BaseParser, RisParser, WokParser, load, loads
from .writer import BaseWriter, RisWriter, dump, dumps

__version__ = "0.7.1"
__version__ = "0.8.0"

__all__ = [
"__version__",
Expand Down

0 comments on commit f5cc2a9

Please sign in to comment.