8000 Prepare release 1.0.8 · python/pyperformance@9085d3a · GitHub
[go: up one dir, main page]

Skip to content

Commit 9085d3a

Browse files
committed
Prepare release 1.0.8
1 parent 3d0a3be commit 9085d3a

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

doc/changelog.rst

Lines changed: 16 additions & 1 deletion
B5D5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
Changelog
22
=========
33

4+
Version 1.0.8 (2023-06-02)
5+
-------------
6+
47
* Move the main requirements.txt file to pyperformance/requirements
5-
so that dependabot can only run on that one file.
8+
so that dependabot can only run on that one file
9+
* Update dependencies of benchmarks not to specify setuptools
10+
* On older versions of Python, skip benchmarks that use features
11+
introduced in newer Python versions
12+
* Support ``--inherit-environ`` when reusing a venv
13+
* Use tomllib/tomli over toml
14+
* Update MANIFEST.in to include cert files for asyncio_tcp_ssl benchmark
15+
* Fix undefined variable issue when raising VenvPipInstallFailedError
16+
* Add mypy config; run mypy in CI
17+
* Fix typo of str.partition from _pyproject_toml.py
18+
* Add version of Richards benchmark that uses super()
19+
* Add a benchmark for runtime-checkable protocols
20+
* Extend async tree benchmarks to cover eager task execution
621

722
Version 1.0.7 (2023-04-22)
823
-------------

pyperformance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33

44

5-
VERSION = (1, 0, 7)
5+
VERSION = (1, 0, 8)
66
__version__ = '.'.join(map(str, VERSION))
77

88

0 commit comments

Comments
 (0)
0