-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74ebb94
commit c262577
Showing
33 changed files
with
1,183 additions
and
866 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,97 +1,3 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
# Changelog | ||
|
||
|
||
## [v3.0.0] | ||
|
||
- Presents better documentation | ||
- Drops support to Python 2 | ||
- Introduces the modules ``sure.doubles``, ``sure.doubles.fakes`` and ``sure.doubles.stubs`` | ||
- Moves the class ``sure.compat.FakeOrderedDict`` into the module ``sure.doubles.fakes`` | ||
- Sure's featured synctactic-sugar of injecting/monkey-patching | ||
``.should``, ``.should_not``, et cetera methods into | ||
:py:class:`object` and its subclasses is disabled by default and needs to be enabled explicitly, programmatically via ``sure.enable_special_syntax()`` or via command-line with the flags: ``-s`` or ``--special-syntax`` | ||
|
||
## [v2.0.0] | ||
### Fixed | ||
- No longer patch the builtin `dir()` function, which fixes pytest in some cases such as projects using gevent. | ||
|
||
## [v1.4.11] | ||
### Fixed | ||
- Reading the version dinamically was causing import errors that caused error when installing package. Refs #144 | ||
|
||
## [v1.4.7] | ||
### Fixed | ||
- Remove wrong parens for format call. Refs #139 | ||
|
||
## [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 | ||
|
||
## [v1.4.4] | ||
|
||
*Nothing to mention here.* | ||
|
||
## [v1.4.3] | ||
### Fixed | ||
- Bug in setup.py that would break in python > 2 | ||
|
||
## [v1.4.2] | ||
### Added | ||
- `ensure` context manager to provide custom assertion messages. Refs #125 | ||
|
||
## [v1.4.1] | ||
### Added | ||
- Python 3.6 support | ||
- Python 3.7-dev support (allowed to fail) | ||
|
||
### Fixed | ||
- Do not overwrite existing class and instance attributes with sure properties (when. should, ...). Refs #127, #129 | ||
- Fix patched built-in `dir()` method. Refs #124, #128 | ||
|
||
## [v1.4.0] | ||
### Added | ||
- anything object which is accessible with `sure.anything` | ||
- interface to extend sure. Refs #31 | ||
|
||
### Removed | ||
- Last traces of Python 2.6 support | ||
|
||
### Fixed | ||
- Allow overwriting of monkey-patched properties by sure. Refs #19 | ||
- Assertions for raises | ||
|
||
## [v1.3.0] | ||
### Added | ||
- Python 3.3, 3.4 and 3.5 support | ||
- pypy support | ||
- Support comparison of OrderedDict. Refs #55 | ||
|
||
### Fixed | ||
- `contain` assertion. Refs #104 | ||
|
||
|
||
## No previous changelog history. | ||
|
||
Please see `git log` | ||
|
||
[Unreleased]: https://github.com/gabrielfalcao/sure/compare/v1.4.7...HEAD | ||
[v1.4.7]: https://github.com/gabrielfalcao/sure/compare/1.4.6...v1.4.7 | ||
[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 | ||
[v1.4.2]: https://github.com/gabrielfalcao/sure/compare/1.4.1...v1.4.2 | ||
[v1.4.1]: https://github.com/gabrielfalcao/sure/compare/1.4.0...v1.4.1 | ||
[v1.4.0]: https://github.com/gabrielfalcao/sure/compare/1.3.0...v1.4.0 | ||
[v1.3.0]: https://github.com/gabrielfalcao/sure/compare/1.2.9...v1.3.0 | ||
[1.2.9]: https://github.com/gabrielfalcao/sure/compare/1.2.5...1.2.9 | ||
[1.2.5]: https://github.com/gabrielfalcao/sure/compare/1.2.4...1.2.5 | ||
The changelog of the Sure project has been moved to the documentation page: [https://sure.readthedocs.io](https://sure.readthedocs.io) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.