From d0ef8df0d9119cf34bc4de40c591fc72348e89d3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 1 Aug 2022 03:33:56 +0000 Subject: [PATCH] 0.4.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 4 ++++ CMakeLists.txt | 2 +- pyproject.toml | 2 +- setup.py | 2 +- symbolic/__init__.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf2e77f..46cabb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.4.0 (2022-08-01) +### Feature +* Update pip install to pep517 ([`27801d4`](https://github.com/tmigimatsu/symbolic/commit/27801d4d0c808314e19defe8b8d15ab7fb2d24f5)) + ## v0.3.9 (2022-07-31) ### Fix * Remove symbolic from Pipfile to fix docs ([`4a86c14`](https://github.com/tmigimatsu/symbolic/commit/4a86c145d36c19859ef2445f687e9ce1561ebe0e)) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ca181e..85e4571 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.11) # Define project. project(symbolic - VERSION 0.3.9 + VERSION 0.4.0 DESCRIPTION "Library for manipulating PDDL symbols" LANGUAGES CXX) string(TOUPPER ${PROJECT_NAME} LIB_CMAKE_NAME) diff --git a/pyproject.toml b/pyproject.toml index 3aafea5..bcb095a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pysymbolic" -version = "0.3.9" +version = "0.4.0" authors = [ {name = "Toki Migimatsu", email = "takatoki@cs.stanford.edu"} ] diff --git a/setup.py b/setup.py index b7d82f4..f206827 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools.command import build_ext # type: ignore -__version__ = "0.3.9" +__version__ = "0.4.0" class CMakeExtension(setuptools.Extension): diff --git a/symbolic/__init__.py b/symbolic/__init__.py index e26988e..eae91e1 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.9" +__version__ = "0.4.0" # __doc__ = pysymbolic.__doc__