diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a3e6e..e2fe3a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased] +## [v0.3.2] - Improved reconstructed tracebacks when errors occur in statements with nested child statements - Added a helpful note for errors resulting from using magic variables in `--before` code diff --git a/pyp.py b/pyp.py index 1e90276..412fdc5 100644 --- a/pyp.py +++ b/pyp.py @@ -12,7 +12,7 @@ from typing import Any, Dict, Iterator, List, Optional, Set, Tuple __all__ = ["pypprint"] -__version__ = "???" +__version__ = "0.3.2" def pypprint(*args, **kwargs): # type: ignore diff --git a/setup.py b/setup.py index 2343ba4..97647ba 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="pypyp", - version="0.3.1", + version="0.3.2", author="Shantanu Jain", author_email="hauntsaninja@gmail.com", description="Easily run Python at the shell! Magical, but never mysterious.",