Skip to content

Commit 8a75c45

Browse files
authored
Bump version to v0.3.2 (#186)
1 parent eaf07c3 commit 8a75c45

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build:
44
pyproject-build
55

66
clean:
7-
rm -rf dist build pyswip.egg-info
7+
rm -rf dist build pyswip.egg-info src/pyswip.egg-info/
88

99
coverage:
1010
PYTHONPATH=src py.test tests --verbose --cov=pyswip

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyswip"
7-
version = "0.3.1"
7+
version = "0.3.2"
88
description = "PySwip enables querying SWI-Prolog in your Python programs."
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/pyswip/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2020
# SOFTWARE.
2121

22-
__VERSION__ = "0.3.1"
22+
__VERSION__ = "0.3.2"
2323

2424
from pyswip.prolog import Prolog as Prolog
2525
from pyswip.easy import *

0 commit comments

Comments
 (0)