Skip to content

Commit 3c07d6c

Browse files
committed
Merge branch 'feat/move-schema-validation-to-vclib'
2 parents d70190d + a29a365 commit 3c07d6c

File tree

5 files changed

+31
-14
lines changed

5 files changed

+31
-14
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Notable changes since the last release of the [SSI Kit](https://github.com/walt-
44

55
## [Unreleased]
66

7+
- Features
8+
- Upgraded VC-Lib to 1.14.1
9+
710
## [1.6.1] - 2022-01-31
811

912
- Features

README.md

+20-6
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,22 @@ The library is written in **Kotlin/Java based library** and can be directly inte
2929

3030
### Via Docker
3131

32-
The easiest way to getting your hands diry and to "play" with the functions the SSI Kit provides is by running the **CLI tool** with _Docker_.
32+
The easiest way to getting your hands dirty and to "play" with the functions the SSI Kit provides is by running the **CLI tool** with _Docker_.
3333

3434
docker run -itv $(pwd)/data:/app/data waltid/ssikit -h
3535

3636
### As dependency
3737

3838
_Gradle_
3939

40-
implementation("id.walt:waltid-ssi-kit:1.6.0")
40+
implementation("id.walt:waltid-ssi-kit:1.6.1")
4141

4242
_Maven_
4343

4444
<dependency>
4545
<groupId>id.walt</groupId>
4646
<artifactId>waltid-ssi-kit</artifactId>
47-
<version>1.6.0</version>
47+
<version>1.6.1</version>
4848
</dependency>
4949

5050
Please go ahead and find further CLI commands and well as other ways how to use the SSI Kit in the documentation section below.
@@ -90,10 +90,24 @@ Following code snipped gives a first impression how to use the SSI Kit for creat
9090
println("JWT verification result: ${resJwt.overallStatus}")
9191
}
9292

93+
## Funded & supported by
94+
95+
<img src="logos-supporter.png">
96+
9397
## License
9498

95-
The SSI Kit by walt.id is Open Source software released under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.html).
99+
```
100+
Copyright ((C)) 2022 walt.id GmbH
96101
97-
## Funded & supported by
102+
Licensed under the Apache License, Version 2.0 (the "License");
103+
you may not use this file except in compliance with the License.
104+
You may obtain a copy of the License at
98105
99-
<img src="logos-supporter.png">
106+
http://www.apache.org/licenses/LICENSE-2.0
107+
108+
Unless required by applicable law or agreed to in writing, software
109+
distributed under the License is distributed on an "AS IS" BASIS,
110+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
111+
See the License for the specific language governing permissions and
112+
limitations under the License.
113+
```

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = "id.walt"
13-
version = "1.6.1"
13+
version = "1.6.2"
1414

1515
repositories {
1616
mavenCentral()

src/main/kotlin/id/walt/Values.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package id.walt
22

33
object Values {
4-
const val version = "1.6.1"
4+
const val version = "1.6.2"
55
const val isSnapshot = false
66
}

ssikit.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function extract() {
7878
exit
7979
fi
8080

81-
if [[ ! -f build/distributions/waltid-ssi-kit-1.6.1.tar ]]; then
81+
if [[ ! -f build/distributions/waltid-ssi-kit-1.6.2.tar ]]; then
8282
echo "The build files do not exist (directory ./build/distributions)."
8383
echo "Have you run \"./ssikit.sh build\" yet?"
8484
echo
@@ -87,7 +87,7 @@ function extract() {
8787

8888
(
8989
cd build/distributions
90-
if tar xf waltid-ssi-kit-1.6.1.tar; then
90+
if tar xf waltid-ssi-kit-1.6.2.tar; then
9191
echo "Extraction successful."
9292
else
9393
echo "Extracting was unsuccessful."
@@ -108,8 +108,8 @@ function build_runscript_question() {
108108
}
109109

110110
function execute_debug() {
111-
if [[ -f build/distributions/waltid-ssi-kit-1.6.1/bin/waltid-ssi-kit ]]; then
112-
JAVA_OPTS="-Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG" build/distributions/waltid-ssi-kit-1.6.1/bin/waltid-ssi-kit "$@"
111+
if [[ -f build/distributions/waltid-ssi-kit-1.6.2/bin/waltid-ssi-kit ]]; then
112+
JAVA_OPTS="-Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG" build/distributions/waltid-ssi-kit-1.6.2/bin/waltid-ssi-kit "$@"
113113
else
114114
build_runscript_question
115115

@@ -121,8 +121,8 @@ function execute_debug() {
121121
}
122122

123123
function execute() {
124-
if [[ -f build/distributions/waltid-ssi-kit-1.6.1/bin/waltid-ssi-kit ]]; then
125-
build/distributions/waltid-ssi-kit-1.6.1/bin/waltid-ssi-kit "$@"
124+
if [[ -f build/distributions/waltid-ssi-kit-1.6.2/bin/waltid-ssi-kit ]]; then
125+
build/distributions/waltid-ssi-kit-1.6.2/bin/waltid-ssi-kit "$@"
126126
else
127127
build_runscript_question
128128

0 commit comments

Comments
 (0)