Skip to content

Commit

Permalink
Update release notes for 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney committed Dec 14, 2020
1 parent 6213176 commit 988feac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release notes

## 0.3.0

* Added an optimization (OPT-1/OPTIMIZE_IS) to inline the "is"/ "is not" statement into a simple pointer comparison with jump statement. Compiles to inline machine code instead of a method call
* Added an optimization (OPT-2/OPTIMIZE_DECREF) to decrement the refcount without a method call, when the object refcount is >1 and then call _Py_dealloc if the ref count becomes 0. Replaces the previous method call
* Windows now uses the system page size instead of the default value of 1MB

## 0.2.1

* Added support for .NET 5.0.1
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='0.2.1',
version='0.3.0',
description='A JIT compiler wrapper for CPython',
author='Anthony Shaw and Microsoft',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion src/pyjion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import platform

__version__ = '0.2.1'
__version__ = '0.3.0'


def _no_dotnet(path):
Expand Down

0 comments on commit 988feac

Please sign in to comment.