From 8b6b018aac16c6c41382cf71dfef3c2ca186df81 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 13 Jul 2022 18:15:11 +0000 Subject: [PATCH] 0.3.5 Automatically generated by python-semantic-release --- CHANGELOG.md | 5 +++++ CMakeLists.txt | 2 +- setup.py | 2 +- symbolic/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be813f2..770fab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## 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)) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7db3ba0..34396cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/setup.py b/setup.py index a465010..f4f49db 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import sys -__version__ = "0.3.4" +__version__ = "0.3.5" class CMakeExtension(setuptools.Extension): diff --git a/symbolic/__init__.py b/symbolic/__init__.py index d7d0e94..1bdd92d 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_proposition, parse_head, parse_args -__version__ = "0.3.4" +__version__ = "0.3.5" # __doc__ = pysymbolic.__doc__