diff --git a/CHANGELOG.md b/CHANGELOG.md index efe48cd..b8b2109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# [v1.3.2](https://github.com/labthings/python-labthings/compare/v1.3.1...v) (2021-08-23) + +This is a bugfix release, fixing the behavour of `StrictLock` and `CompositeLock` objects when +used in `with` statements (#275). +* Bump pylint from 2.9.5 to 2.10.2 ([655a583](https://github.com/labthings/python-labthings/commit/655a583)) +* Locks release on exception ([ed7855e](https://github.com/labthings/python-labthings/commit/ed7855e)) +* Test lock releases with/without arguments ([7151372](https://github.com/labthings/python-labthings/commit/7151372)) +* Test to ensure locks are released on error ([8bdc522](https://github.com/labthings/python-labthings/commit/8bdc522)) + + # [v1.3.1](https://github.com/labthings/python-labthings/compare/v1.3.0...v1.3.1) (2021-08-04) This is a bugfix release, fixing errors that occurred if any fields had `allow_none` set to `True`: diff --git a/README.md b/README.md index 52cc58e..8545a75 100644 --- a/README.md +++ b/README.md @@ -147,4 +147,4 @@ Much of the code surrounding default response formatting has been liberally take ### Changelog generation * `npm install -g conventional-changelog-cli` -* `conventional-changelog -r 1 --config ./changelog.config.js -i CHANGELOG.md -s` +* `npx conventional-changelog -r 1 --config ./changelog.config.js -i CHANGELOG.md -s` diff --git a/pyproject.toml b/pyproject.toml index 2f1ba7f..794e839 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "labthings" -version = "1.3.1" +version = "1.3.2" description = "Python implementation of LabThings, based on the Flask microframework" readme = "README.md" repository = "https://github.com/labthings/python-labthings/"