From 8a75c4556d8e12cb1152f6b5366a7288f5a41009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Y=C3=BCce=20Tekol?= Date: Mon, 21 Oct 2024 01:34:16 +0300 Subject: [PATCH] Bump version to v0.3.2 (#186) --- Makefile | 2 +- pyproject.toml | 2 +- src/pyswip/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4ab0c31..99e6dcc 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ build: pyproject-build clean: - rm -rf dist build pyswip.egg-info + rm -rf dist build pyswip.egg-info src/pyswip.egg-info/ coverage: PYTHONPATH=src py.test tests --verbose --cov=pyswip diff --git a/pyproject.toml b/pyproject.toml index d0fad86..fb169ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pyswip" -version = "0.3.1" +version = "0.3.2" description = "PySwip enables querying SWI-Prolog in your Python programs." readme = "README.md" requires-python = ">=3.8" diff --git a/src/pyswip/__init__.py b/src/pyswip/__init__.py index 520d29f..2f5c6e7 100644 --- a/src/pyswip/__init__.py +++ b/src/pyswip/__init__.py @@ -19,7 +19,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__VERSION__ = "0.3.1" +__VERSION__ = "0.3.2" from pyswip.prolog import Prolog as Prolog from pyswip.easy import *