Skip to content

Commit a2c7ea0

Browse files
actions-usergithub-actions
authored and
github-actions
committed
1.0.0
Automatically generated by python-semantic-release
1 parent 3f78e2f commit a2c7ea0

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

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

5+
## v1.0.0 (2022-10-17)
6+
### Feature
7+
* Add matrices and complete Walkthrough.ipynb ([`6aad4ea`](https://github.com/CallumJHays/mathpad/commit/6aad4eabe2bf53fd89c0b7732d1663f006ea8c0e))
8+
9+
### Fix
10+
* **py37:** Import Protocol from typing_extensions ([`b8d0e95`](https://github.com/CallumJHays/mathpad/commit/b8d0e95a96c64adda56a19efdb9309238cd29efb))
11+
* **types:** Undo contravariance for Generic Vec and Val types ([`882c09e`](https://github.com/CallumJHays/mathpad/commit/882c09e1f112fe6b993dd2b45b509476b8759539))
12+
* Make SubstitutionMap keys and vals covariant per pyright's recommendation ([`94ceba3`](https://github.com/CallumJHays/mathpad/commit/94ceba3af36787e0067b70eb8fda6e083a164b83))
13+
* Replace SubstitutionMap with contravariant equivalent and fix examples ([`462f670`](https://github.com/CallumJHays/mathpad/commit/462f670ccf532be6c0b41c190ff4489a371ec501))
14+
15+
### Breaking
16+
* Replace SubstitutionMap with contravariant equivalent and fix examples ([`462f670`](https://github.com/CallumJHays/mathpad/commit/462f670ccf532be6c0b41c190ff4489a371ec501))
17+
18+
### Documentation
19+
* Update walkthrough and readme ([`d6dc4ee`](https://github.com/CallumJHays/mathpad/commit/d6dc4ee9f534797b3978d3b38abf8a7af3b916f1))
20+
521
## v0.2.3 (2022-10-11)
622
### Fix
723
* Get examples working in jupyterlite ([`ce7d164`](https://github.com/CallumJHays/mathpad/commit/ce7d1640b069ff0d91f532679b0fe20a1468082a))

mathpad/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
sympy.init_printing() # type: ignore
2727
sympy.printing.printer.Printer.set_global_settings(min=-3, max=4) # type: ignore
2828

29-
__version__ = "0.2.3"
29+
__version__ = "1.0.0"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mathpad"
3-
version = "0.2.3"
3+
version = "1.0.0"
44
description = "Simplified interface to Sympy for solving physics, engineering and maths problems"
55
authors = ["Callum J Hays <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)