From 996fbcfd6a39dbe2d611883aa97ec865e79f924d Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Thu, 5 Aug 2021 13:53:11 +1000 Subject: [PATCH] Update version numbers --- CHANGELOG.md | 2 +- setup.py | 2 +- src/pyjion/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0932e7cb6..0b3bd4877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release notes -## master +## 1.0.0 (rc2) * BINARY_MULTIPLY and BINARY_POWER will assume the resulting integer is a big integer (not unboxed) * Introduced two optimizations IntegerUnboxingMultiply and IntegerUnboxingPower which are applied at optimization level 2. Try level two if you work with integers, but at smaller values to see better performance. diff --git a/setup.py b/setup.py index 868e9c493..9457a6df3 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='pyjion', - version='1.0.0rc1', + version='1.0.0rc2', description='A JIT compiler wrapper for CPython', author='Anthony Shaw', author_email='anthonyshaw@apache.org', diff --git a/src/pyjion/__init__.py b/src/pyjion/__init__.py index d3966b481..a0d167031 100644 --- a/src/pyjion/__init__.py +++ b/src/pyjion/__init__.py @@ -5,7 +5,7 @@ from enum import IntFlag, IntEnum from dataclasses import dataclass -__version__ = '1.0.0rc1' +__version__ = '1.0.0rc2' def _no_dotnet(path):