Skip to content

Commit

Permalink
Update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney committed Aug 5, 2021
1 parent 4a43d19 commit 996fbcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/pyjion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 996fbcf

Please sign in to comment.