diff --git a/CHANGELOG.md b/CHANGELOG.md index adc0bce..954428e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.12.1 (2021-08-30) +### Fix +* Update dependencies ([`ab4a72f`](https://github.com/vberlier/nbtlib/commit/ab4a72f2030a0d29b634535ae8628c538058de6b)) + ## v1.12.0 (2021-02-18) ### Feature * Make it possible to combine reading and writing/merging ([`9d5be17`](https://github.com/vberlier/nbtlib/commit/9d5be173a0b594a4077eddfe53709b78c6a67637)) diff --git a/nbtlib/__init__.py b/nbtlib/__init__.py index 65bd176..e9bb8f6 100644 --- a/nbtlib/__init__.py +++ b/nbtlib/__init__.py @@ -5,4 +5,4 @@ from .literal.parser import * from .literal.serializer import * -__version__ = "1.12.0" +__version__ = "1.12.1" diff --git a/pyproject.toml b/pyproject.toml index 0ee1cd5..bf7bcd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nbtlib" -version = "1.12.0" +version = "1.12.1" description = "A python package to read and edit nbt data" authors = ["Valentin Berlier "] license = "MIT"