Skip to content

Commit da632c1

Browse files
authored
Bumps version to 0.12.0. (#340)
1 parent 557ac00 commit da632c1

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
### 0.12.0 (2024-02-16)
2+
* Avoid strcpy of Field Names in C-Ext Read (#312)
3+
* Fix Bugs with emit_bare_values (#313)
4+
* Simplify ION_DECIMAL to Python Decimal Conversion (#314)
5+
* Reorder simpleion and Refactor Pydoc (#317)
6+
* Emit SymbolTokens for Symbol "bare values" (#318)
7+
* Remove PyObject_HasAttrString condition check. (#319)
8+
* Try to read and convert Ion INT as int 64 (#320)
9+
* Enhance ionc_write_big_int method for optimized handling of large integers. (#321)
10+
* Cache the attribute name that is accessed repeatedly. (#323)
11+
* Added and Plumbed IonPyValueModel Flags (#322)
12+
* Implement Symbol as Text in C-extension (#327)
13+
* Create and Build IonPyList instead of wrapping (#328)
14+
* Implement STRUCT_AS_STD_DICT in C-extension load (#330)
15+
* Build Std Dict without Lists (#331)
16+
* Optimize type check while writing IonStruct. (#333)
17+
* Plumb IonPyValueModel Flags from Benchmark Spec (#332)
18+
* Optimize ionc_write_struct (#334)
19+
* Enhance the benchmark runner to support multiple top level objects use case. (#315)
20+
* Use PyDateTime C API to Write Timestamps (#336)
21+
* Updates the release workflow to build wheels for python 3.11 and MacOS arm64. (#338)
22+
* Optimize Timestamp Reads in ion-c extension (#337)
23+
124
### 0.11.3 (2023-11-30)
225
* Enables Windows and Linux's build and test workflow (#304)
326
* Build dict for IonPyDict in ioncmodule (#309)

amazon/ion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# specific language governing permissions and limitations under the
1313
# License.
1414
__author__ = 'Amazon.com, Inc.'
15-
__version__ = '0.11.3'
15+
__version__ = '0.12.0'
1616

1717
__all__ = [
1818
'core',

setup.py

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

4747
setup(
4848
name='amazon.ion',
49-
version='0.11.3',
49+
version='0.12.0',
5050
description='A Python implementation of Amazon Ion.',
5151
url='http://github.com/amazon-ion/ion-python',
5252
author='Amazon Ion Team',

0 commit comments

Comments
 (0)