Skip to content

Commit

Permalink
Prepare release 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Jun 2, 2023
1 parent 3d0a3be commit 9085d3a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
Changelog
=========

Version 1.0.8 (2023-06-02)
-------------

* Move the main requirements.txt file to pyperformance/requirements
so that dependabot can only run on that one file.
so that dependabot can only run on that one file
* Update dependencies of benchmarks not to specify setuptools
* On older versions of Python, skip benchmarks that use features
introduced in newer Python versions
* Support ``--inherit-environ`` when reusing a venv
* Use tomllib/tomli over toml
* Update MANIFEST.in to include cert files for asyncio_tcp_ssl benchmark
* Fix undefined variable issue when raising VenvPipInstallFailedError
* Add mypy config; run mypy in CI
* Fix typo of str.partition from _pyproject_toml.py
* Add version of Richards benchmark that uses super()
* Add a benchmark for runtime-checkable protocols
* Extend async tree benchmarks to cover eager task execution

Version 1.0.7 (2023-04-22)
-------------
Expand Down
2 changes: 1 addition & 1 deletion pyperformance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys


VERSION = (1, 0, 7)
VERSION = (1, 0, 8)
__version__ = '.'.join(map(str, VERSION))


Expand Down

0 comments on commit 9085d3a

Please sign in to comment.