File tree 3 files changed +28
-2
lines changed
3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ Version 1.0.6 (2022-11-20)
5
+ -------------
6
+
4
7
* 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
5
31
6
32
Version 1.0.4 (2022-01-25)
7
33
-------------
Original file line number Diff line number Diff line change 55
55
# built documents.
56
56
#
57
57
# The short X.Y version.
58
- version = release = '1.0.5 '
58
+ version = release = '1.0.6 '
59
59
60
60
# The language for content autogenerated by Sphinx. Refer to documentation
61
61
# for a list of supported languages.
Original file line number Diff line number Diff line change 2
2
import sys
3
3
4
4
5
- VERSION = (1 , 0 , 5 )
5
+ VERSION = (1 , 0 , 6 )
6
6
__version__ = '.' .join (map (str , VERSION ))
7
7
8
8
You can’t perform that action at this time.
0 commit comments