diff --git a/CHANGELOG.md b/CHANGELOG.md index 69ce07d..f89b63b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.2.0 (2022-04-26) +### Feature +* Implement fast method to apply sequence of actions ([`b7a4a68`](https://github.com/tmigimatsu/symbolic/commit/b7a4a68f406782a808b50d5875d4a5266f47146d)) + +### Fix +* Build only cpython wheels ([`20ac4ac`](https://github.com/tmigimatsu/symbolic/commit/20ac4ace704584a9765345e5cb08b2750623a793)) + ## v0.1.2 (2022-01-15) ### Fix * Do not upload release ([`b5e172b`](https://github.com/tmigimatsu/symbolic/commit/b5e172b572b2d3fb4410c378315e5228332ef8d6)) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a7be67..1f01e87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.11) # Define project. project(symbolic - VERSION 0.1.2 + VERSION 0.2.0 DESCRIPTION "Library for manipulating PDDL symbols" LANGUAGES CXX) string(TOUPPER ${PROJECT_NAME} LIB_CMAKE_NAME) diff --git a/setup.py b/setup.py index 3806611..4aa6712 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import sys -__version__ = "0.1.2" +__version__ = "0.2.0" class CMakeExtension(setuptools.Extension): diff --git a/symbolic/__init__.py b/symbolic/__init__.py index 7d8902c..ba6eb07 100644 --- a/symbolic/__init__.py +++ b/symbolic/__init__.py @@ -1,6 +1,6 @@ from .pysymbolic import * from .problem import Problem, _P, _and, _or, _not, _forall, _exists, _when, parse_head, parse_args -__version__ = "0.1.2" +__version__ = "0.2.0" # __doc__ = pysymbolic.__doc__