diff --git a/.verchew.ini b/.verchew.ini index bf18486..80f5f3e 100644 --- a/.verchew.ini +++ b/.verchew.ini @@ -6,7 +6,7 @@ version = GNU Make [Python] cli = python -versions = 3.6 || 3.7 || 3.8 +version = 3 [Poetry] diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cfb447..d45cd9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index a6e0800..cbfeb96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] 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", ]