diff --git a/CHANGELOG.md b/CHANGELOG.md index 018abfa..954383a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v1.10.0 (2020-12-24) +### Feature +* Add --find cli option ([`d99bc48`](https://github.com/vberlier/nbtlib/commit/d99bc48354899f0e1edfdc600859dc6e4eb79351)) +* Add find method ([`bfef54f`](https://github.com/vberlier/nbtlib/commit/bfef54fdbad7517bb2c3ed2f186c1e1af8cf1f0a)) + +### Documentation +* Document `--find` option ([`83b2057`](https://github.com/vberlier/nbtlib/commit/83b20576430285278beb0307ef3685a9c99af544)) + ## v1.9.0 (2020-12-24) ### Feature * Add --path, --unpack and --json options ([`5e5efd9`](https://github.com/vberlier/nbtlib/commit/5e5efd92f7b0d0a66c600d013812c773301525c1)) diff --git a/nbtlib/__init__.py b/nbtlib/__init__.py index 8f36f91..9338c2e 100644 --- a/nbtlib/__init__.py +++ b/nbtlib/__init__.py @@ -5,4 +5,4 @@ from .literal.parser import * from .literal.serializer import * -__version__ = "1.9.0" +__version__ = "1.10.0" diff --git a/pyproject.toml b/pyproject.toml index 3947a03..992f382 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nbtlib" -version = "1.9.0" +version = "1.10.0" description = "A python package to read and edit nbt data" authors = ["Valentin Berlier "] license = "MIT"