Skip to content

Commit

Permalink
release: 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed May 7, 2017
1 parent 87b111f commit 623fbcd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sure/__init__.py
Expand Up @@ -48,7 +48,7 @@
if not PY2:
basestring = str

version = '1.4.5'
version = '1.4.6'


not_here_error = \
Expand Down

0 comments on commit 623fbcd

Please sign in to comment.