Skip to content

Commit c2c7dac

Browse files
authored
Bumps version to 0.9.0. (#184)
1 parent 1c0860c commit c2c7dac

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 0.9.0 (2020-12-10)
2+
* Adds a C extension to speed up simpleion module. (#181)
3+
14
### 0.8.0 (2020-12-07)
25
* Makes build/CI work with Python 3.9. (#152)
36
* Sets the default ion_type when an IonPy* is constructed. (#173)

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ global-exclude *.pyc
55
global-exclude .git*
66
include install.py
77
include amazon/ion/_ioncmodule.h
8+
include amazon/ion/ioncmodule.c

amazon/ion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from __future__ import print_function
1919

2020
__author__ = 'Amazon.com, Inc.'
21-
__version__ = '0.8.0'
21+
__version__ = '0.9.0'
2222

2323
__all__ = [
2424
'core',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def run_setup():
5050

5151
setup(
5252
name='amazon.ion',
53-
version='0.8.0',
53+
version='0.9.0',
5454
description='A Python implementation of Amazon Ion.',
5555
url='http://github.com/amzn/ion-python',
5656
author='Amazon Ion Team',

0 commit comments

Comments
 (0)