From 9d30de8b293d1cc908ad96f542e76825a7d75a17 Mon Sep 17 00:00:00 2001 From: CallumJHays Date: Sun, 29 Aug 2021 17:44:02 +1000 Subject: [PATCH] fix: version --- mathpad/__init__.py | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/mathpad/__init__.py b/mathpad/__init__.py index c136e5a..46aa168 100644 --- a/mathpad/__init__.py +++ b/mathpad/__init__.py @@ -9,4 +9,6 @@ from .var import var sympy.printing.printer.Printer.set_global_settings(min=-3, max=4) # type: ignore -sympy.init_printing(True, use_unicode=True, use_latex=True) # type: ignore \ No newline at end of file +sympy.init_printing(True, use_unicode=True, use_latex=True) # type: ignore + +__version__ = "0.1.1" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e26911b..0abcfd3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mathpad" -version = "0.0.1" +version = "0.1.1" description = "Simplified interface to Sympy for solving physics, engineering and maths problems" authors = ["Callum J Hays "] license = "MIT"