diff --git a/.travis.yml b/.travis.yml index c97329d1..8f71fd6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: - "3.6" - "3.7" - "3.8" + - "3.9" install: - ./install-test.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 8abd232f..1e30353a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,9 @@ backward incompatible changes will start to apply when the projects goes 1.0 ## [Unreleased] + +## [0.13.0] (released: 2020-02-04) + ### Changed - Optimized calculating line/column from a position ([#131]). Thanks @@ -366,7 +369,8 @@ backward incompatible changes will start to apply when the projects goes 1.0 [#20]: https://github.com/igordejanovic/parglare/issues/20 -[Unreleased]: https://github.com/igordejanovic/parglare/compare/0.12.0...HEAD +[Unreleased]: https://github.com/igordejanovic/parglare/compare/0.13.0...HEAD +[0.13.0]: https://github.com/igordejanovic/parglare/compare/0.12.0...0.13.0 [0.12.0]: https://github.com/igordejanovic/parglare/compare/0.11.0...0.12.0 [0.11.0]: https://github.com/igordejanovic/parglare/compare/0.10.0...0.11.0 [0.10.0]: https://github.com/igordejanovic/parglare/compare/0.9.2...0.10.0 diff --git a/docs/about/CONTRIBUTING.md b/docs/about/CONTRIBUTING.md index 115a6dfd..40ee3c9e 100644 --- a/docs/about/CONTRIBUTING.md +++ b/docs/about/CONTRIBUTING.md @@ -105,7 +105,7 @@ Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds/changes functionality, the docs should be updated. -3. The pull request should work for Python 3.4-3.8. Check +3. The pull request should work for Python 3.4-3.9. Check https://travis-ci.org/igordejanovic/parglare/pull_requests and make sure that the tests pass for all supported Python versions. diff --git a/docs/index.md b/docs/index.md index 6aeaa15d..96ea059a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -218,4 +218,4 @@ MIT ## Python versions -Tested with 3.4-3.8 +Tested with 3.4-3.9 diff --git a/setup.cfg b/setup.cfg index a3bd70c1..d7c2e179 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,6 +23,7 @@ classifiers = Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 Operating System :: OS Independent [options]