Skip to content

Commit

Permalink
1.0.0
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 1, 2022
1 parent e1dedda commit 08bb887
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.0 (2022-08-01)
### Breaking
* No longer supports Python 3.6. ([`e1dedda`](https://github.com/tmigimatsu/symbolic/commit/e1dedda72af45189c49ed115d6a8f36676555274))

## v0.4.0 (2022-08-01)
### Feature
* Update pip install to pep517 ([`27801d4`](https://github.com/tmigimatsu/symbolic/commit/27801d4d0c808314e19defe8b8d15ab7fb2d24f5))
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.4.0
VERSION 1.0.0
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 = "0.4.0"
version = "1.0.0"
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.command import build_ext # type: ignore


__version__ = "0.4.0"
__version__ = "1.0.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_proposition, parse_head, parse_args

__version__ = "0.4.0"
__version__ = "1.0.0"

# __doc__ = pysymbolic.__doc__

0 comments on commit 08bb887

Please sign in to comment.