From db5066c9b970899dd7c098788fcffa74d84dce21 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 26 Oct 2022 00:57:05 +0000 Subject: [PATCH] 1.2.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 15 +++++++++++++++ mathpad/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3b507f..7fa3b3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ +## v1.2.0 (2022-10-26) +### Feature +* Add @mathpad_constructor to elec module where valid ([`806a4d6`](https://github.com/CallumJHays/mathpad/commit/806a4d62f62cc8b243057bd7d2de43868aa195a9)) + +### Fix +* Export all dimensions in from mathpad import * ([`eb06884`](https://github.com/CallumJHays/mathpad/commit/eb06884373d1e37e8d3e018ac46b6203f51be537)) +* Rename precision arg to sigfigs for clarity ([`4154d4e`](https://github.com/CallumJHays/mathpad/commit/4154d4e5ebf3a3109a9e998060c1cf8263644f35)) +* Rename SumDimensionMismatch to SumDimensionMismatchError ([`43b6b4e`](https://github.com/CallumJHays/mathpad/commit/43b6b4e65449b74395775a6b716a6ec887b6f929)) + +### Documentation +* Update Walkthrough ([`123a981`](https://github.com/CallumJHays/mathpad/commit/123a981cc78c7d3c613fac535f94a47f8c3f2119)) +* Print docstr before returning in MathPadConstructor._repr_latex_() ([`3882a7d`](https://github.com/CallumJHays/mathpad/commit/3882a7d9c7bff8970ecf64d7b55c05fc44b23d6e)) +* Document kinetic_energy constructor ([`04990da`](https://github.com/CallumJHays/mathpad/commit/04990daaca76e88e6dedb596685ba989ff13dad3)) +* **readme:** Small edits ([`f5ab81c`](https://github.com/CallumJHays/mathpad/commit/f5ab81ceab97bb63b5aa168e0ae52eab4b7a672d)) + ## v1.1.0 (2022-10-25) ### Feature * Micropip install in deps before imports to fix and clean examples ([`3be2d8e`](https://github.com/CallumJHays/mathpad/commit/3be2d8ec8dc03ed311fd7f6861ff7c0811fcef85)) diff --git a/mathpad/__init__.py b/mathpad/__init__.py index 4bfe15f..92aeb5f 100644 --- a/mathpad/__init__.py +++ b/mathpad/__init__.py @@ -36,4 +36,4 @@ sympy.init_printing() # type: ignore sympy.printing.printer.Printer.set_global_settings(min=-3, max=4) # type: ignore -__version__ = "1.1.0" +__version__ = "1.2.0" diff --git a/pyproject.toml b/pyproject.toml index a37bd75..e01db6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mathpad" -version = "1.1.0" +version = "1.2.0" description = "Simplified interface to Sympy for solving physics, engineering and maths problems" authors = ["Callum J Hays "] license = "MIT"