diff --git a/CHANGELOG.md b/CHANGELOG.md index cfc88ed03..bc7d7763b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +## [2.1.0] - 2021-09-16 + +### Enhancements + +- Added `line_end` and `column_end` to `JSONReporter` output. + ## [2.0.0] - 2021-08-24 PythonTA's adopting semantic versioning as of this release, so we've bumped the version to 2.0. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 6133bbbe7..ab013304f 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -14,7 +14,7 @@ import python_ta python_ta.check_all() """ -__version__ = "2.0.1.dev" # Version number +__version__ = "2.1.0" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins