Skip to content

Commit 8d32f2c

Browse files
author
github-actions
committed
0.14.0 #release
Automatically generated by python-semantic-release
1 parent 6e8b931 commit 8d32f2c

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
<!--next-version-placeholder-->
44

5+
## v0.14.0 (2023-02-07)
6+
### Feature
7+
* Hopefully fixing semantic release so feat can deploy ([`de8282c`](https://github.com/chanind/tensor-theorem-prover/commit/de8282c78f5354cd511d6a954790ffa936d5c7aa))
8+
* Multithreading ([#6](https://github.com/chanind/tensor-theorem-prover/issues/6)) ([`8370747`](https://github.com/chanind/tensor-theorem-prover/commit/8370747157ae521932ee013b1936beedeb21d3fb))
9+
10+
### Fix
11+
* Try more things to fix tagging ([`6e8b931`](https://github.com/chanind/tensor-theorem-prover/commit/6e8b9315d220aadb327b279ef4bdfc8f0612fb0d))
12+
* Try using v2 for the checkout action to fix tagging ([`42f31f9`](https://github.com/chanind/tensor-theorem-prover/commit/42f31f9b17c24c6fcfb4cb3600307bd8aecfe290))
13+
514
## v0.13.8 (2023-01-27)
615
### Fix
716
* Improving consistency on identical runs ([#5](https://github.com/chanind/tensor-theorem-prover/issues/5)) ([`5a23ca5`](https://github.com/chanind/tensor-theorem-prover/commit/5a23ca51d14c9ffafaf9ce0dc169159f38145ae9))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tensor_theorem_prover"
3-
version = "0.13.8"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[lib]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tensor-theorem-prover"
3-
version = "0.13.8"
3+
version = "0.14.0"
44
description = "Customizable first-order logic theorem prover supporting approximate vector similarity in unification"
55
license = "MIT"
66
readme = "README.md"
@@ -10,7 +10,7 @@ keywords = ["theorem-proving", "logic", "first-order", "unification", "reasoning
1010

1111
[project]
1212
name = "tensor-theorem-prover"
13-
version = "0.13.8"
13+
version = "0.14.0"
1414
description = "Customizable first-order logic theorem prover supporting approximate vector similarity in unification"
1515
license = { text = "MIT" }
1616
requires-python = ">=3.8"

tensor_theorem_prover/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.13.8"
1+
__version__ = "0.14.0"
22

33
from .prover import ResolutionProver, Proof, ProofStep, ProofStats
44

0 commit comments

Comments
 (0)