diff --git a/CHANGES.md b/CHANGES.md index 929ad91..e8eefe1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # CHANGE LOG +## Version 1.2.3 - 2022-11-10 +- Conforms to DiME data format version 1.002 +- Improves working the encrypted message payloads and allows encryption with symmetric key +- Internal verification order changed according to DiME 1.002 +- Adds Issuer URL claim ("isu") +- Adds identity capabilities Seal and Timestamp +- Fixes an issue with converting items containing item links to legacy + ## Version 1.2.2 - 2022-10-25 - Repackaging with JSON Canonicalizer dependencies - Minor correction to unit tests diff --git a/src/dime/Dime.cs b/src/dime/Dime.cs index 0452afd..8c55f8b 100644 --- a/src/dime/Dime.cs +++ b/src/dime/Dime.cs @@ -36,7 +36,7 @@ public abstract class Dime /// /// The current version of the implemented Di:ME specification. /// - public const string Version = "1.001"; + public const string Version = "1.002"; /// /// A convenience constant for no expiration date. /// diff --git a/src/dime/dime.csproj b/src/dime/dime.csproj index be58fc4..35abcdb 100644 --- a/src/dime/dime.csproj +++ b/src/dime/dime.csproj @@ -10,7 +10,7 @@ Shift Everywhere Niclas Kjellin DiME - 1.2.2 + 1.2.3 MIT https://docs.dimeformat.io https://github.com/shifteverywhere/dime-dotnet-ref diff --git a/test/dime-test/DimeTest.cs b/test/dime-test/DimeTest.cs index fe5d8a3..ed3437b 100644 --- a/test/dime-test/DimeTest.cs +++ b/test/dime-test/DimeTest.cs @@ -9,7 +9,6 @@ // using System; using System.Collections.Generic; -using System.Diagnostics; using System.Text; using DiME; using DiME.Capability; @@ -32,7 +31,7 @@ public void BeforeAll() [TestMethod] public void VersionTest1() { - Assert.AreEqual("1.001", Dime.Version); + Assert.AreEqual("1.002", Dime.Version); } [TestMethod]