diff --git a/CHANGELOG.md b/CHANGELOG.md index fbabd56e2..c7ec3062f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.13.0 (2024-09-16) + +### Feat + +- add a script to check VSA (#858) + +### Fix + +- use gnu-sed on mac instead of the built-in sed command (#853) + ## v0.12.0 (2024-08-16) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 108a25919..40e763ab8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -137,7 +137,7 @@ version_files = [ "src/macaron/__init__.py:__version__", ] major_version_zero = true -version = "0.12.0" +version = "0.13.0" # https://github.com/pytest-dev/pytest-cov diff --git a/src/macaron/__init__.py b/src/macaron/__init__.py index 5084f0ce8..f9ce14748 100644 --- a/src/macaron/__init__.py +++ b/src/macaron/__init__.py @@ -8,7 +8,7 @@ # The version of this package. There's no comprehensive, official list of other # magic constants, so we stick with this one only for now. See also this conversation: # https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants -__version__ = "0.12.0" +__version__ = "0.13.0" # The path to the Macaron package. MACARON_PATH = os.path.dirname(os.path.abspath(__file__))