From 3b7fc8c9b92b5d2e5f1b3580cd1f2f14a113c38b Mon Sep 17 00:00:00 2001 From: Phillip Schanely Date: Thu, 11 Mar 2021 20:10:08 -0500 Subject: [PATCH] Bump version to 0.0.11 And update release notes. --- crosshair/__init__.py | 2 +- doc/source/changelog.rst | 20 ++++++++++++++++++-- setup.py | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/crosshair/__init__.py b/crosshair/__init__.py index cb11b26d..4102a03d 100644 --- a/crosshair/__init__.py +++ b/crosshair/__init__.py @@ -9,7 +9,7 @@ from crosshair.util import debug # Do not forget to update in setup.py! -__version__ = "0.0.10" +__version__ = "0.0.11" __author__ = "Phillip Schanely" __license__ = "MIT" __status__ = "Alpha" diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 87da7d8f..2d2a39df 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -6,8 +6,24 @@ Changelog Next Version ============ -* Added `--report_verbose` option to customize whether you get verbose multi-line - counterexample reports or the single-line, machine-readable reporting. +* Nothing yet! + +============== +Version 0.0.11 +============== + +* `Enable `_ + analysis when only preconditions exist. (this is useful if you just want to catch + exceptions!) +* Added ``--report_verbose`` option to customize whether you get verbose multi-line + counterexample reports or the single-line, machine-readable reporting. + (`command help `_) +* Added workaround for missing ``crosshair watch`` output in the PyCharm terminal. +* Assorted bug fixes: + `1 `_, + `2 `_, + `3 `_, + `4 `_ ============== Version 0.0.10 diff --git a/setup.py b/setup.py index 0063583a..a9399dc6 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ # the pre-commit checks through check_init_and_setup_coincide.py. setup( name="crosshair-tool", - version="0.0.10", # Update this in crosshair/__init__.py too + version="0.0.11", # Update this in crosshair/__init__.py too author="Phillip Schanely", author_email="pschanely+vE7F@gmail.com", packages=find_packages(),