diff --git a/CHANGELOG.md b/CHANGELOG.md index f413a52..c3b507f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## 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)) + +### Documentation +* **sandbox:** Use custom pyodide dist with requirements preloaded for smoother experience ([`64325e2`](https://github.com/CallumJHays/mathpad/commit/64325e2df4948d2d8f4f43dba40c6639c8c26eb0)) + ## v1.0.0 (2022-10-17) ### Feature * Add matrices and complete Walkthrough.ipynb ([`6aad4ea`](https://github.com/CallumJHays/mathpad/commit/6aad4eabe2bf53fd89c0b7732d1663f006ea8c0e)) diff --git a/mathpad/__init__.py b/mathpad/__init__.py index 537afb0..29a5b76 100644 --- a/mathpad/__init__.py +++ b/mathpad/__init__.py @@ -35,4 +35,4 @@ sympy.init_printing() # type: ignore sympy.printing.printer.Printer.set_global_settings(min=-3, max=4) # type: ignore -__version__ = "1.0.0" +__version__ = "1.1.0" diff --git a/pyproject.toml b/pyproject.toml index eebe38c..a37bd75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mathpad" -version = "1.0.0" +version = "1.1.0" description = "Simplified interface to Sympy for solving physics, engineering and maths problems" authors = ["Callum J Hays "] license = "MIT"