Skip to content

Commit

Permalink
Bumps version to 0.12.0. (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheqianh authored Feb 16, 2024
1 parent 557ac00 commit da632c1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
### 0.12.0 (2024-02-16)
* Avoid strcpy of Field Names in C-Ext Read (#312)
* Fix Bugs with emit_bare_values (#313)
* Simplify ION_DECIMAL to Python Decimal Conversion (#314)
* Reorder simpleion and Refactor Pydoc (#317)
* Emit SymbolTokens for Symbol "bare values" (#318)
* Remove PyObject_HasAttrString condition check. (#319)
* Try to read and convert Ion INT as int 64 (#320)
* Enhance ionc_write_big_int method for optimized handling of large integers. (#321)
* Cache the attribute name that is accessed repeatedly. (#323)
* Added and Plumbed IonPyValueModel Flags (#322)
* Implement Symbol as Text in C-extension (#327)
* Create and Build IonPyList instead of wrapping (#328)
* Implement STRUCT_AS_STD_DICT in C-extension load (#330)
* Build Std Dict without Lists (#331)
* Optimize type check while writing IonStruct. (#333)
* Plumb IonPyValueModel Flags from Benchmark Spec (#332)
* Optimize ionc_write_struct (#334)
* Enhance the benchmark runner to support multiple top level objects use case. (#315)
* Use PyDateTime C API to Write Timestamps (#336)
* Updates the release workflow to build wheels for python 3.11 and MacOS arm64. (#338)
* Optimize Timestamp Reads in ion-c extension (#337)

### 0.11.3 (2023-11-30)
* Enables Windows and Linux's build and test workflow (#304)
* Build dict for IonPyDict in ioncmodule (#309)
Expand Down
2 changes: 1 addition & 1 deletion amazon/ion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# specific language governing permissions and limitations under the
# License.
__author__ = 'Amazon.com, Inc.'
__version__ = '0.11.3'
__version__ = '0.12.0'

__all__ = [
'core',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run_setup():

setup(
name='amazon.ion',
version='0.11.3',
version='0.12.0',
description='A Python implementation of Amazon Ion.',
url='http://github.com/amazon-ion/ion-python',
author='Amazon Ion Team',
Expand Down

0 comments on commit da632c1

Please sign in to comment.