Skip to content

Commit cb33023

Browse files
committed
Release Candidate 18
1 parent a9287ea commit cb33023

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group 'org.ic4j'
6-
version '0.6.17'
6+
version '0.6.18'
77

88
sourceCompatibility = 1.8
99

@@ -37,8 +37,8 @@ test {
3737
}
3838

3939
dependencies {
40-
implementation group: 'org.ic4j', name: 'ic4j-candid', version: '0.6.17'
41-
implementation group: 'org.ic4j', name: 'ic4j-agent', version: '0.6.17'
40+
implementation group: 'org.ic4j', name: 'ic4j-candid', version: '0.6.18'
41+
implementation group: 'org.ic4j', name: 'ic4j-agent', version: '0.6.18'
4242
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.3'
4343

4444
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
@@ -48,13 +48,13 @@ dependencies {
4848
implementation group: 'org.apache.httpcomponents.client5', name: 'httpclient5', version: '5.1.3'
4949

5050
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
51-
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.4.2'
51+
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.1'
5252

5353
// https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jdk8
54-
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: '2.13.4'
54+
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: '2.14.1'
5555

5656
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor
57-
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-cbor', version: '2.13.4'
57+
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-cbor', version: '2.14.1'
5858

5959
// https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on
6060
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.70'

src/test/java/org/ic4j/management/test/HelloWorldProxy.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
import java.util.concurrent.CompletableFuture;
44

55
import org.ic4j.agent.annotations.Waiter;
6-
import org.ic4j.agent.annotations.UPDATE;
76
import org.ic4j.agent.annotations.Argument;
87
import org.ic4j.candid.annotations.Name;
98
import org.ic4j.candid.types.Type;
109

1110
public interface HelloWorldProxy {
1211

13-
@UPDATE
1412
@Name("greet")
1513
@Waiter(timeout = 30)
1614
public CompletableFuture<String> greet(@Argument(Type.TEXT)String name);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
management.location=http://127.0.0.1:8000/
1+
management.location=http://localhost:4943/
22
//management.location=https://m7sm4-2iaaa-aaaab-qabra-cai.ic0.app/
33
management.identity=/Users/roman/.config/dfx/identity/default/identity.pem

0 commit comments

Comments
 (0)