diff --git a/CHANGES.md b/CHANGES.md index 1f97cf1f..55db2ae7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +### 0.11.3 (2023-11-30) +* Enables Windows and Linux's build and test workflow (#304) +* Build dict for IonPyDict in ioncmodule (#309) + ### 0.11.2 (2023-11-16) * Uses the latest ion-c version to build the C extension. (#299) * Changes IonPyObjects' constructor to match their parent classes. (#298) diff --git a/amazon/ion/__init__.py b/amazon/ion/__init__.py index c5a5c846..1cf8504c 100644 --- a/amazon/ion/__init__.py +++ b/amazon/ion/__init__.py @@ -12,7 +12,7 @@ # specific language governing permissions and limitations under the # License. __author__ = 'Amazon.com, Inc.' -__version__ = '0.11.2' +__version__ = '0.11.3' __all__ = [ 'core', diff --git a/setup.py b/setup.py index 4dc62367..2cf0bb34 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def run_setup(): setup( name='amazon.ion', - version='0.11.2', + version='0.11.3', description='A Python implementation of Amazon Ion.', url='http://github.com/amazon-ion/ion-python', author='Amazon Ion Team',