diff --git a/CHANGELOG.md b/CHANGELOG.md index 92ae529..e6d4a2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Nothing here yet.* +## [v1.4.6] +### Added +- Support and test against PyPy 3 + +### Fixed +- Fix safe representation in exception messages for bytes and unicode objects. Refs #136 + ## [v1.4.5] ### Fixed - Correctly escape special character for `str.format()` for assertion messages. Refs #134 @@ -57,7 +64,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Please see `git log` -[Unreleased]: https://github.com/gabrielfalcao/sure/compare/v1.4.5...HEAD +[Unreleased]: https://github.com/gabrielfalcao/sure/compare/v1.4.6...HEAD +[v1.4.6]: https://github.com/gabrielfalcao/sure/compare/1.4.5...v1.4.6 [v1.4.5]: https://github.com/gabrielfalcao/sure/compare/1.4.4...v1.4.5 [v1.4.4]: https://github.com/gabrielfalcao/sure/compare/1.4.3...v1.4.4 [v1.4.3]: https://github.com/gabrielfalcao/sure/compare/1.4.2...v1.4.3 diff --git a/docs/source/conf.py b/docs/source/conf.py index 2e37213..53c31e9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = '1.4.5' +version = '1.4.6' # The full version, including alpha/beta/rc tags. -release = '1.4.5' +release = '1.4.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/sure/__init__.py b/sure/__init__.py index 69309ed..963fd6f 100644 --- a/sure/__init__.py +++ b/sure/__init__.py @@ -48,7 +48,7 @@ if not PY2: basestring = str -version = '1.4.5' +version = '1.4.6' not_here_error = \