Skip to content

Commit

Permalink
Prepared release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philpotisk committed Jan 31, 2022
1 parent 9482da2 commit d806d35
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Notable changes since the last release of the [SSI Kit](https://github.com/walt-

## [Unreleased]

- Features
- 2019 09 json schema validation https://github.com/walt-id/waltid-ssikit/pull/102

- Fixes
- Fix/ebsi jwt verifiable presentation https://github.com/walt-id/waltid-ssikit/pull/101
- DidService move max length substring to FileSystem Store https://github.com/walt-id/waltid-ssikit/issues/100

## [1.5.0] - 2022-01-27

- Roadmap Items
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ The easiest way to getting your hands diry and to "play" with the functions the

_Gradle_

implementation("id.walt:waltid-ssi-kit:1.5.0")
implementation("id.walt:waltid-ssi-kit:1.6.0")

_Maven_

<dependency>
<groupId>id.walt</groupId>
<artifactId>waltid-ssi-kit</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</dependency>

Please go ahead and find further CLI commands and well as other ways how to use the SSI Kit in the documentation section below.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "id.walt"
version = "1.5.0"
version = "1.6.0"

repositories {
mavenCentral()
Expand Down
12 changes: 6 additions & 6 deletions ssikit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function extract() {
exit
fi

if [[ ! -f build/distributions/waltid-ssi-kit-1.5.0.tar ]]; then
if [[ ! -f build/distributions/waltid-ssi-kit-1.6.0.tar ]]; then
echo "The build files do not exist (directory ./build/distributions)."
echo "Have you run \"./ssikit.sh build\" yet?"
echo
Expand All @@ -87,7 +87,7 @@ function extract() {

(
cd build/distributions
if tar xf waltid-ssi-kit-1.5.0.tar; then
if tar xf waltid-ssi-kit-1.6.0.tar; then
echo "Extraction successful."
else
echo "Extracting was unsuccessful."
Expand All @@ -108,8 +108,8 @@ function build_runscript_question() {
}

function execute_debug() {
if [[ -f build/distributions/waltid-ssi-kit-1.5.0/bin/waltid-ssi-kit ]]; then
JAVA_OPTS="-Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG" build/distributions/waltid-ssi-kit-1.5.0/bin/waltid-ssi-kit "$@"
if [[ -f build/distributions/waltid-ssi-kit-1.6.0/bin/waltid-ssi-kit ]]; then
JAVA_OPTS="-Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG" build/distributions/waltid-ssi-kit-1.6.0/bin/waltid-ssi-kit "$@"
else
build_runscript_question

Expand All @@ -121,8 +121,8 @@ function execute_debug() {
}

function execute() {
if [[ -f build/distributions/waltid-ssi-kit-1.5.0/bin/waltid-ssi-kit ]]; then
build/distributions/waltid-ssi-kit-1.5.0/bin/waltid-ssi-kit "$@"
if [[ -f build/distributions/waltid-ssi-kit-1.6.0/bin/waltid-ssi-kit ]]; then
build/distributions/waltid-ssi-kit-1.6.0/bin/waltid-ssi-kit "$@"
else
build_runscript_question

Expand Down

0 comments on commit d806d35

Please sign in to comment.