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 69f6ebb commit 76f7f01
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGES

## 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
- Fixes an issue where KID was not set correctly when encrypting message payloads

## Version 1.2.2 - 2022-10-25
- Conforms to DiME data format version 1.001
- Refactored verify methods to match C# interface
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}

group 'io.dimeformat'
version '1.2.2'
version '1.2.3'
description 'DiME (Data Integrity Message Envelope). A powerful universal data format that is built for secure, and integrity protected communication between trusted entities in a network using an application-based publik-key infrastructure (APKI).'

repositories {
Expand Down Expand Up @@ -63,7 +63,7 @@ publishing {

groupId = 'io.dimeformat'
artifactId = 'dime-java-ref'
version = '1.2.2'
version = '1.2.3'

from components.java

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/dimeformat/Dime.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public final class Dime {
/**
* The current version of the implemented Di:ME specification.
*/
public static final String VERSION = "1.001";
public static final String VERSION = "1.002";

/**
* A convenience constant for no expiration date.
Expand Down

0 comments on commit 76f7f01

Please sign in to comment.