Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user authored and github-actions committed Aug 24, 2022
1 parent 2812e20 commit 1a8d637
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## v1.0.3 (2022-08-24)
### Fix
* Problem_pddl property ([`2812e20`](https://github.com/tmigimatsu/symbolic/commit/2812e20137793daa7eacfa24ff79e0402d0a9513))

## v1.0.2 (2022-08-23)
### Fix
* Typing on problem.py ([`78f5c39`](https://github.com/tmigimatsu/symbolic/commit/78f5c391ba6fb2f6f80cb1f36f17182b3b0ea729))
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 1.0.2
VERSION 1.0.3
DESCRIPTION "Library for manipulating PDDL symbols"
LANGUAGES CXX)
string(TOUPPER ${PROJECT_NAME} LIB_CMAKE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pysymbolic"
version = "1.0.2"
version = "1.0.3"
authors = [
{name = "Toki Migimatsu", email = "[email protected]"}
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools.extern.packaging import version # type: ignore


__version__ = "1.0.2"
__version__ = "1.0.3"


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__ = "1.0.2"
__version__ = "1.0.3"

# __doc__ = pysymbolic.__doc__

0 comments on commit 1a8d637

Please sign in to comment.