diff --git a/README.md b/README.md index f509ebf..d4e5a7f 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ Here are a few useful things to keep in mind when using `ipycalc`: * `If` statements and `else` statements are available using python's inline `if` statement notation. * Square roots can be displayed using `sqrt`. * Prime characters can be displayed using `^prime`. -* US units are built in via `Pint`. Metric units are not yet supported. +* If a line gets too long for printing, you can add a line break to the description, equation, or reference by inserting `//`. +* US units are built in via `Pint`. Basic support is available for some more common metric units. +* `ipycalc` has a built in `nbconvert` template called `ipycalc` that works just like the `webpdf` template, except it fixes the the bad margins in the `webpdf` template. IPycalc is still in its infancy. I'm sure there are bugs, so be cautious and use your head. A special thanks to @connorferster for `handcalcs` which inspired this project: https://github.com/connorferster/handcalcs diff --git a/setup.py b/setup.py index d986567..a199c8e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ipycalc", - version="0.0.31", + version="0.0.32", author="D. Craig Brinck, PE, SE", author_email="Building.Code@outlook.com", description="Clean looking engineering calculations for IPython",