Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user committed Jan 15, 2022
1 parent 9a7f976 commit c968689
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

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

## v0.1.0 (2022-01-15)
### Feature
* Start versioning ([`9a7f976`](https://github.com/tmigimatsu/symbolic/commit/9a7f976fa05f0ff88ac415f7336536c543052177))
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.0.0
VERSION 0.1.0
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.0.0"
__version__ = "0.1.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_head, parse_args

__version__ = "0.0.0"
__version__ = "0.1.0"

# __doc__ = pysymbolic.__doc__

0 comments on commit c968689

Please sign in to comment.