Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# History

## v0.10.0 (2025-05-23)

* Improve performance of rispy's parser and refactor parser
* Add support for Python 3.13 and remove Python 3.8
* Revert strip UTF-8 BOM strip
* (dev) Add benchmark for rispy
* (dev) Switch from Makefile to poethepoet
* (dev) increase test coverage to 99.5%
* (dev) GitHub publish package to PyPI

## v0.9.0 (2024-01-17)

* Improve performance to yield from file objects instead of loading into memory at once (@scott-8 #57)
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 RisParser, WokParser, load, loads
from .writer import BaseWriter, RisWriter, dump, dumps

__version__ = "0.9.0"
__version__ = "0.10.0"

__all__ = [
"LIST_TYPE_TAGS",
Expand Down