From d0eb52617cff4eec6f49b1006f77a5b183e7d4d5 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 2 Jul 2023 06:04:06 +0000 Subject: [PATCH] 2.0.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 25 +++++++++++++++++++++++++ mathpad/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fa3b3c..d747163 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ +## v2.0.0 (2023-07-02) + +### Feature + +* Mathpad 2.0 ([`30b70b5`](https://github.com/CallumJHays/mathpad/commit/30b70b57f2646da45619f9060b2d8f8fe6b58fd4)) +* Use sympy norm for better latex ([`58945d5`](https://github.com/CallumJHays/mathpad/commit/58945d56d6f409620673b5550c581a2f9be0811e)) + +### Fix + +* **3.7:** Import `Literal` from `typing_extensions` ([`e275bf1`](https://github.com/CallumJHays/mathpad/commit/e275bf1cdf0b4b6efffc40c405c92517753ed771)) +* Improve docs and comments ([`32f953b`](https://github.com/CallumJHays/mathpad/commit/32f953bee49cce951ae8ac1b3f5a70bb23949105)) +* Support symbolic function vectors; "v(t)" @ space ([`e4b9faf`](https://github.com/CallumJHays/mathpad/commit/e4b9faf7d43f953093bf898b2bc07228def7830a)) +* Fix imports in vector.py ([`f7b4a9a`](https://github.com/CallumJHays/mathpad/commit/f7b4a9a0efeeb05635f8f04ca7eb243c0bb1eee9)) +* Add missing f for f-string ([`837bc46`](https://github.com/CallumJHays/mathpad/commit/837bc465d3dc0b12fca6703de709c4b17ed02ccf)) + +### Breaking + +* mathpad 2.0 ([`30b70b5`](https://github.com/CallumJHays/mathpad/commit/30b70b57f2646da45619f9060b2d8f8fe6b58fd4)) + +### Documentation + +* Clean readme ([`ae16a72`](https://github.com/CallumJHays/mathpad/commit/ae16a72385c0a8902b3d60649d9fa1eff5fba127)) +* Fix readme ([`e4ceda0`](https://github.com/CallumJHays/mathpad/commit/e4ceda0eb8e2ad0abd3ff9a9f6f5e68acc030f96)) +* Fix readme ([`542fe5b`](https://github.com/CallumJHays/mathpad/commit/542fe5b6c366eaa311891820c81baffeb746ef96)) + ## v1.2.0 (2022-10-26) ### Feature * Add @mathpad_constructor to elec module where valid ([`806a4d6`](https://github.com/CallumJHays/mathpad/commit/806a4d62f62cc8b243057bd7d2de43868aa195a9)) diff --git a/mathpad/__init__.py b/mathpad/__init__.py index d20d2e7..fe0b5ce 100644 --- a/mathpad/__init__.py +++ b/mathpad/__init__.py @@ -26,4 +26,4 @@ sympy.init_printing() # type: ignore sympy.printing.printer.Printer.set_global_settings(min=-3, max=4) # type: ignore -__version__ = "1.2.0" +__version__ = "2.0.0" diff --git a/pyproject.toml b/pyproject.toml index 6b19941..98b7869 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mathpad" -version = "1.2.0" +version = "2.0.0" description = "Simplified interface to Sympy for solving physics, engineering and maths problems" authors = ["Callum J Hays "] license = "MIT"