diff --git a/CHANGELOG.md b/CHANGELOG.md index 954428e..1851d02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v2.0.0 (2021-10-23) +### Feature +* Remove root ([`e9180a2`](https://github.com/vberlier/nbtlib/commit/e9180a2e042cdfd28c5ab1ccadaa14d05793dbb0)) + +### Breaking +* The Root class is gone and so is the root attribute on files ([`e9180a2`](https://github.com/vberlier/nbtlib/commit/e9180a2e042cdfd28c5ab1ccadaa14d05793dbb0)) + ## v1.12.1 (2021-08-30) ### Fix * Update dependencies ([`ab4a72f`](https://github.com/vberlier/nbtlib/commit/ab4a72f2030a0d29b634535ae8628c538058de6b)) diff --git a/nbtlib/__init__.py b/nbtlib/__init__.py index e9bb8f6..f1f69d9 100644 --- a/nbtlib/__init__.py +++ b/nbtlib/__init__.py @@ -5,4 +5,4 @@ from .literal.parser import * from .literal.serializer import * -__version__ = "1.12.1" +__version__ = "2.0.0" diff --git a/pyproject.toml b/pyproject.toml index bf7bcd6..d68d061 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nbtlib" -version = "1.12.1" +version = "2.0.0" description = "A python package to read and edit nbt data" authors = ["Valentin Berlier "] license = "MIT"