8000 Prepare release 1.0.6 · python/pyperformance@4b317cb · GitHub
[go: up one dir, main page]

Skip to content

Commit 4b317cb

Browse files
committed
Prepare release 1.0.6
1 parent 6d10e48 commit 4b317cb

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

doc/changelog.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,33 @@
11
Changelog
22
=========
33

4+
Version 1.0.6 (2022-11-20)
5+
-------------
6+
47
* Upgrade pyperf from 2.4.1 to 2.5.0
8+
* Add a benchmark to measure gc traversal
9+
* Add jobs field in compile section to specify make -j param
10+
* Add benchmark for Docutils
11+
* Add async_generators benchmark
12+
* Add benchmark for IPC
13+
* Fix Manifest Group
14+
* Fix installing dev build of pyperformance inside compile/compile_all
15+
* Always upload, even when some benchmarks fail
16+
* Add sqlglot benchmarks
17+
* Support reporting geometric mean by tags
18+
* Allow for specifying local wheels and sdists as dependencies
19+
* Add a benchmark based on `python -m pprint`
20+
* Add mdp back into the default group
21+
* Add coroutines benchmark
22+
* Reduce noise in generators benchmark
23+
* Add benchmark for deepcopy
24+
* Add coverage benchmark
25+
* Add generators benchmark
26+
* Add benchmark for async tree workloads
27+
* Support relative paths to manifest files
28+
* Add support for multiple benchmark groups in a manifest
29+
* Fix --inherit-environ issue
30+
* Use working Genshi 0.7.7
531

632
Version 1.0.4 (2022-01-25)
733
-------------

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = release = '1.0.5'
58+
version = release = '1.0.6'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

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, 5)
5+
VERSION = (1, 0, 6)
66
__version__ = '.'.join(map(str, VERSION))
77

88

0 commit comments

Comments
 (0)
0