Skip to content

Commit

Permalink
Prepare release 2.4.0 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 authored Jul 20, 2022
1 parent f06d3bf commit 6be960e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
Changelog
=========

Version 2.4.0 (2022-07-20)
--------------------------

* pyperf now recognizes `pyston <https://github.com/pyston/pyston>`_ as the JIT-based implementation.
Patch by Kevin Modzelewski.
* :ref:`Runner CLI <runner_cli>` now supports ``--profile=PROFILE`` option for profiling benchmarks.
Patch by Michael Droettboom.

Version 2.3.1 (2022-02-03)
--------------------------

* Add a ``Runner.bench_async_func()`` to benchmark an asyncio coroutine.
Patch by Inada Naoki.
* pyperf now recognizes graalpython as the JIT-based implementation.
* pyperf now recognizes `graalpython <https://github.com/oracle/graalpython>`_ as the JIT-based implementation.
Patch by Tim Felgentreff.

Version 2.3.0 (2021-09-28)
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# built documents.
#
# The short X.Y version.
version = release = '2.3.1'
version = release = '2.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyperf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from time import perf_counter

VERSION = (2, 3, 1)
VERSION = (2, 4, 0)
__version__ = '.'.join(map(str, VERSION))

# Export pyperf.perf_counter for backward compatibility with pyperf 1.7
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# - git commit -a -m "post-release"
# - git push or send the PR to the repository

VERSION = '2.3.1'
VERSION = '2.4.0'

DESCRIPTION = 'Python module to run and analyze benchmarks'
CLASSIFIERS = [
Expand Down

0 comments on commit 6be960e

Please sign in to comment.