Skip to content

Commit

Permalink
Changes to version 1.2.3 and updates CHANGES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shifteverywhere committed Nov 10, 2022
1 parent 1586520 commit 2d1bd55
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/dime/Dime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class Dime
/// <summary>
/// The current version of the implemented Di:ME specification.
/// </summary>
public const string Version = "1.001";
public const string Version = "1.002";
/// <summary>
/// A convenience constant for no expiration date.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/dime/dime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Company>Shift Everywhere</Company>
<Authors>Niclas Kjellin</Authors>
<PackageId>DiME</PackageId>
<PackageVersion>1.2.2</PackageVersion>
<PackageVersion>1.2.3</PackageVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://docs.dimeformat.io</PackageProjectUrl>
<RepositoryUrl>https://github.com/shifteverywhere/dime-dotnet-ref</RepositoryUrl>
Expand Down
3 changes: 1 addition & 2 deletions test/dime-test/DimeTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
//
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
using DiME;
using DiME.Capability;
Expand All @@ -32,7 +31,7 @@ public void BeforeAll()
[TestMethod]
public void VersionTest1()
{
Assert.AreEqual("1.001", Dime.Version);
Assert.AreEqual("1.002", Dime.Version);
}

[TestMethod]
Expand Down

0 comments on commit 2d1bd55

Please sign in to comment.