diff --git a/CHANGELOG.md b/CHANGELOG.md index b01c5e5..106f66d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.13.6 (2023-01-27) +### Fix +* Fixing deploy and stopping infinite run loop ([`1e63a10`](https://github.com/chanind/tensor-theorem-prover/commit/1e63a1074ce565284503d93af511e174cb172a26)) + ## v0.13.5 (2023-01-27) ### Fix * Trying using the PAT for checkout too to see if the workflow will run... ([`b84b6c7`](https://github.com/chanind/tensor-theorem-prover/commit/b84b6c7fda242e2cc87a53b4c87eae18da8959be)) diff --git a/Cargo.toml b/Cargo.toml index 535cfbd..9cbde07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tensor_theorem_prover" -version = "0.13.5" +version = "0.13.6" edition = "2021" [lib] diff --git a/pyproject.toml b/pyproject.toml index df7150f..d95d67f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tensor-theorem-prover" -version = "0.13.5" +version = "0.13.6" description = "Customizable first-order logic theorem prover supporting approximate vector similarity in unification" license = "MIT" readme = "README.md" @@ -10,7 +10,7 @@ keywords = ["theorem-proving", "logic", "first-order", "unification", "reasoning [project] name = "tensor-theorem-prover" -version = "0.13.5" +version = "0.13.6" description = "Customizable first-order logic theorem prover supporting approximate vector similarity in unification" license = { text = "MIT" } requires-python = ">=3.8" diff --git a/tensor_theorem_prover/__init__.py b/tensor_theorem_prover/__init__.py index 70ee49f..49b71f5 100644 --- a/tensor_theorem_prover/__init__.py +++ b/tensor_theorem_prover/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.5" +__version__ = "0.13.6" from .prover import ResolutionProver, Proof, ProofStep, ProofStats