diff --git a/CHANGELOG.md b/CHANGELOG.md index 520e42a..6e77e7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.9.10] - 2024-07-18 + +- Fix DateTime serialization and deserialization + ## [1.9.9] - 2024-07-12 - Fix enum deserialization for SendPrimitiveAsync and SendPrimitiveCollectionAsync @@ -23,4 +27,4 @@ Refer to the following for earlier releases of libraries in the project. 1. [Serialization - JSON](./src/serialization/json/Changelog-old.md) 1. [Serialization - FORM](./src/serialization/form/Changelog-old.md) 1. [Serialization - TEXT](./src/serialization/text/Changelog-old.md) -1. [Serialization - MULTIPART](./src/serialization/multipart/Changelog-old.md) +1. [Serialization - MULTIPART](./src/serialization/multipart/Changelog-old.md) \ No newline at end of file diff --git a/Directory.Build.props b/Directory.Build.props index 131c0a8..6751c2c 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - 1.9.9 + 1.9.10 false diff --git a/src/abstractions/Time.cs b/src/abstractions/Time.cs index fc534f5..a508bff 100644 --- a/src/abstractions/Time.cs +++ b/src/abstractions/Time.cs @@ -9,7 +9,7 @@ namespace Microsoft.Kiota.Abstractions /// /// Model to represent only the date component of a DateTime /// - public struct Time + public struct Time : IEquatable