diff --git a/CHANGELOG.md b/CHANGELOG.md index aec8bdc1..bbd41363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +* + +## [1.31.2] - 2023-06-29 + +### Fixed + * Issue related to wrong regex option in MongoDB ## [1.31.1] - 2023-05-31 diff --git a/setup.py b/setup.py index 33ce6cf0..029964a4 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ def read_file(path): setuptools.setup( name = "appier", - version = "1.31.1", + version = "1.31.2", author = "Hive Solutions Lda.", author_email = "development@hive.pt", description = "Appier Framework", diff --git a/src/appier/base.py b/src/appier/base.py index 1a1365ae..cc833e0c 100644 --- a/src/appier/base.py +++ b/src/appier/base.py @@ -101,7 +101,7 @@ """ The name to be used to describe the framework while working on its own environment, this is just a descriptive value """ -VERSION = "1.31.1" +VERSION = "1.31.2" """ The version of the framework that is currently installed this value may be used for debugging/diagnostic purposes """