Skip to content

Commit 034f58b

Browse files
authored
Prepare release 1.0.4 (python#129)
1 parent 7b17664 commit 034f58b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

doc/changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
Version 1.0.4 (2022-01-25)
5+
-------------
6+
7+
* Re-release support for user-defined benchmark after fixing problem
8+
with virtual environments.
9+
410
Version 1.0.3 (2021-12-20)
511
-------------
612

doc/conf.py

+1-1
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.3'
58+
version = release = '1.0.4'
5959

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

pyperformance/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33

44

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

88

0 commit comments

Comments
 (0)