From 0873b86cade7938e0c83766262fe817fcd809111 Mon Sep 17 00:00:00 2001 From: hauntsaninja <> Date: Tue, 12 May 2020 13:50:30 -0700 Subject: [PATCH] pyp: bump version --- CHANGELOG.md | 11 +++++++---- setup.py | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0920bfe..2fe0947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,18 @@ # Changelog -## Unreleased +## [v0.3] - pyp is now configurable! See README.md for the details - Added CHANGELOG.md +- We now attempt to show a reconstructed traceback for errors raised in generated code +- Improved various error messages. We should never show you tracebacks into pyp code unless it's a +genuine pyp crash +- The output of `--script` now has a shebang and orders imports better +- Improved undefined name detection for imports, exception handlers, class and function definitions - Automatic printing now tries a little harder to find standalone expressions to print -- The output of --script now has a shebang -- Improved various error messages - Input code is now dedent-ed -- Improved undefined name detection for imports, exception handlers, class and function definitions - Updated Related Projects in README.md +- Several improvements to tests Extra thanks to @rmcgibbo! Thanks to @nickodell, @yuvadm, @dbieber, @alendit! diff --git a/setup.py b/setup.py index 8ee3e3e..53b3bde 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="pypyp", - version="0.2.1", + version="0.3", author="Shantanu Jain", author_email="hauntsaninja@gmail.com", description="Easily run Python at the shell! Magical, but never mysterious.",