Skip to content

Commit

Permalink
0.3.5
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user committed Jul 13, 2022
1 parent 1a22daf commit 8b6b018
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## v0.3.5 (2022-07-13)
### Fix
* Print full pddl report ([`1a22daf`](https://github.com/tmigimatsu/symbolic/commit/1a22daf6f7f01b29edbaf6b239eb0948c3e82017))
* Print pddl problem parsing errors ([`60ae847`](https://github.com/tmigimatsu/symbolic/commit/60ae847a6ab53323bbc7689c894ffade8ac5a0db))

## v0.3.4 (2022-07-13)
### Fix
* Print more parsing information ([`0ad24b4`](https://github.com/tmigimatsu/symbolic/commit/0ad24b4b6f75e3f38cbc103c9780e97b49f10981))
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.3.4
VERSION 0.3.5
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.3.4"
__version__ = "0.3.5"


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_proposition, parse_head, parse_args

__version__ = "0.3.4"
__version__ = "0.3.5"

# __doc__ = pysymbolic.__doc__

0 comments on commit 8b6b018

Please sign in to comment.