diff --git a/CHANGELOG.md b/CHANGELOG.md index 75b42292..dfb5e0fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ +## 5.7.2 + +([Full Changelog](https://github.com/blink1073/oct2py/compare/v5.7.1...7b9400f72a7cf61a31ce0296ca73bec6a523996d)) + +### Bugs fixed + +- add id warning on save_safe_struct [#327](https://github.com/blink1073/oct2py/pull/327) ([@yasirroni](https://github.com/yasirroni)) + +### Maintenance and upkeep improvements + +- Fix CI failures [#329](https://github.com/blink1073/oct2py/pull/329) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/blink1073/oct2py/graphs/contributors?from=2024-08-12&to=2024-08-19&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ablink1073%2Foct2py+involves%3Ablink1073+updated%3A2024-08-12..2024-08-19&type=Issues) | [@yasirroni](https://github.com/search?q=repo%3Ablink1073%2Foct2py+involves%3Ayasirroni+updated%3A2024-08-12..2024-08-19&type=Issues) + + + ## 5.7.1 ([Full Changelog](https://github.com/blink1073/oct2py/compare/v5.7.0)) @@ -10,8 +30,6 @@ ([GitHub contributors page for this release](https://github.com/blink1073/oct2py/graphs/contributors?from=2024-06-11&to=2024-08-12&type=c)) - - ## 5.7.0 ([Full Changelog](https://github.com/blink1073/oct2py/compare/v5.6.1...e27d7cc8f58034874a1222d5792afb63706efbdb)) diff --git a/oct2py/_version.py b/oct2py/_version.py index 1af7d443..8815351c 100644 --- a/oct2py/_version.py +++ b/oct2py/_version.py @@ -6,7 +6,7 @@ VersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"]) # Version string must appear intact for hatch versioning -__version__ = "5.7.1" +__version__ = "5.7.2" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*?)(?P\d*)"