diff --git a/CHANGELOG.md b/CHANGELOG.md index 9de2c7b9..3924ed6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v0.52.0 (2022-03-01) +### Feature +* Track original file in auto_yaml ([`36af60e`](https://github.com/mcbeet/beet/commit/36af60e625bc816d72358423ac926839abd1c3ec)) +* Make bare file content private and track original file ([`5d8320f`](https://github.com/mcbeet/beet/commit/5d8320ff676e488dd8c699d7a57d5d81365346df)) +* Add source range ([`321b410`](https://github.com/mcbeet/beet/commit/321b410c18f58734b36fb67dbb38b919ef630e99)) + +### Fix +* Make original refer to self by default ([`ce448b5`](https://github.com/mcbeet/beet/commit/ce448b56aae3527344fb510fe4f2ccd9d8682236)) +* Take ranges into account in equality check fast path ([`14b7287`](https://github.com/mcbeet/beet/commit/14b728753321eb807687d960d17b91249267a026)) +* Better repr for file instances ([`54c46c4`](https://github.com/mcbeet/beet/commit/54c46c447920c1bf2a17cc3a5f437402915e155e)) + ## v0.51.2 (2022-02-28) ### Fix * Forgot to export DensityFunction ([`8884c59`](https://github.com/mcbeet/beet/commit/8884c59f7f4bd135e9899562dd88a6e4f2692e19)) diff --git a/beet/__init__.py b/beet/__init__.py index 40dc7ac0..31e940f4 100644 --- a/beet/__init__.py +++ b/beet/__init__.py @@ -15,4 +15,4 @@ from .toolchain.tree import * from .toolchain.worker import * -__version__ = "0.51.2" +__version__ = "0.52.0" diff --git a/pyproject.toml b/pyproject.toml index 3b6da36f..fc8cb921 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beet" -version = "0.51.2" +version = "0.52.0" description = "The Minecraft pack development kit" authors = ["Valentin Berlier "] license = "MIT"