diff --git a/CHANGELOG.md b/CHANGELOG.md index fb6a78f..6186cbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.2] - 2024-09-10 + +### Added + +- Fixed numeric strings from being parsed as Datetime objects to being parsed as strings. +-Only parse to Datetime objects that conform to ISO 8601 format. + + ## [1.3.1] - 2024-08-23 diff --git a/kiota_serialization_json/_version.py b/kiota_serialization_json/_version.py index d045b44..b84f08f 100644 --- a/kiota_serialization_json/_version.py +++ b/kiota_serialization_json/_version.py @@ -1 +1 @@ -VERSION: str = '1.3.1' +VERSION: str = '1.3.2'