File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 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' ,
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments