Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user committed Apr 26, 2022
1 parent 210e5db commit 192062f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

<!--next-version-placeholder-->

## 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))
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys


__version__ = "0.1.2"
__version__ = "0.2.0"


class CMakeExtension(setuptools.Extension):
Expand Down
2 changes: 1 addition & 1 deletion symbolic/__init__.py
Original file line number Diff line number Diff line change
@@ -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__

0 comments on commit 192062f

Please sign in to comment.