-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from jacebrowning/release/v2.0
Release v2.0
- Loading branch information
Showing
3 changed files
with
11 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ version = GNU Make | |
[Python] | ||
|
||
cli = python | ||
versions = 3.6 || 3.7 || 3.8 | ||
version = 3 | ||
|
||
[Poetry] | ||
|
||
|
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,26 +1,26 @@ | ||
# 2.0 (unreleased) | ||
# 2.0 (2020-02-06) | ||
|
||
- Dropped Python 2 support. | ||
- Added support for Python 3.8. | ||
|
||
# 1.3 (2018/08/10) | ||
# 1.3 (2018-08-10) | ||
|
||
- Added `startswith`, `endswith`, `istartswith`, and `iendswith` helpers. | ||
- Added support for Python 3.7. | ||
|
||
# 1.2 (2018/03/17) | ||
# 1.2 (2018-03-17) | ||
|
||
- Added `icontains` method to check for containment ignoring case. | ||
- Added `iexcludes` method to check for exclusion ignoring case. | ||
|
||
# 1.1 (2018/02/21) | ||
# 1.1 (2018-02-21) | ||
|
||
- Added `expect` fixture to use directly in tests. | ||
|
||
# 1.0 (2017/12/03) | ||
# 1.0 (2017-12-03) | ||
|
||
- Initial stable release. | ||
|
||
# 0.2.2.post7 (2017/12/02) | ||
# 0.2.2.post7 (2017-12-02) | ||
|
||
- Added automatic conversion from `OrderedDict` to `dict` on Python 3.6 to create readable diffs. |
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,7 +1,7 @@ | ||
[tool.poetry] | ||
|
||
name = "pytest-expecter" | ||
version = "2.0a2" | ||
version = "2.0" | ||
description = "Better testing with expecter and pytest." | ||
|
||
license = "BSD" | ||
|
@@ -10,12 +10,11 @@ authors = ["Jace Browning <[email protected]>"] | |
|
||
readme = "README.md" | ||
|
||
homepage = "https://pypi.org/pytest-expecter/demo" | ||
homepage = "https://pypi.org/project/pytest-expecter" | ||
documentation = "https://pytest-expecter.readthedocs.io" | ||
repository = "https://github.com/jacebrowning/pytest-expecter" | ||
|
||
keywords = [ | ||
] | ||
keywords = ["pytest", "testing"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Plugins", | ||
|
@@ -25,6 +24,7 @@ classifiers = [ | |
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Topic :: Software Development :: Testing", | ||
] | ||
|
||
|