Skip to content

Commit 9ee2633

Browse files
committedAug 14, 2024·
Generate updated javadocs for 1.12.0
Signed-off-by: Artur Souza <[email protected]>
1 parent 96fb755 commit 9ee2633

File tree

1,257 files changed

+49380
-17178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,257 files changed

+49380
-17178
lines changed
 

‎README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ For a Maven project, add the following to your `pom.xml` file:
4949
<dependency>
5050
<groupId>io.dapr</groupId>
5151
<artifactId>dapr-sdk</artifactId>
52-
<version>1.11.0</version>
52+
<version>1.12.0</version>
5353
</dependency>
5454
<!-- Dapr's SDK for Actors (optional). -->
5555
<dependency>
5656
<groupId>io.dapr</groupId>
5757
<artifactId>dapr-sdk-actors</artifactId>
58-
<version>1.11.0</version>
58+
<version>1.12.0</version>
5959
</dependency>
6060
<!-- Dapr's SDK integration with SpringBoot (optional). -->
6161
<dependency>
6262
<groupId>io.dapr</groupId>
6363
<artifactId>dapr-sdk-springboot</artifactId>
64-
<version>1.11.0</version>
64+
<version>1.12.0</version>
6565
</dependency>
6666
...
6767
</dependencies>
@@ -75,11 +75,11 @@ For a Gradle project, add the following to your `build.gradle` file:
7575
dependencies {
7676
...
7777
// Dapr's core SDK with all features, except Actors.
78-
compile('io.dapr:dapr-sdk:1.11.0')
78+
compile('io.dapr:dapr-sdk:1.12.0')
7979
// Dapr's SDK for Actors (optional).
80-
compile('io.dapr:dapr-sdk-actors:1.11.0')
80+
compile('io.dapr:dapr-sdk-actors:1.12.0')
8181
// Dapr's SDK integration with SpringBoot (optional).
82-
compile('io.dapr:dapr-sdk-springboot:1.11.0')
82+
compile('io.dapr:dapr-sdk-springboot:1.12.0')
8383
}
8484
```
8585

‎daprdocs/content/en/java-sdk-docs/_index.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@ For a Maven project, add the following to your `pom.xml` file:
4646
<dependency>
4747
<groupId>io.dapr</groupId>
4848
<artifactId>dapr-sdk</artifactId>
49-
<version>1.11.0</version>
49+
<version>1.12.0</version>
5050
</dependency>
5151
<!-- Dapr's SDK for Actors (optional). -->
5252
<dependency>
5353
<groupId>io.dapr</groupId>
5454
<artifactId>dapr-sdk-actors</artifactId>
55-
<version>1.11.0</version>
55+
<version>1.12.0</version>
5656
</dependency>
5757
<!-- Dapr's SDK integration with SpringBoot (optional). -->
5858
<dependency>
5959
<groupId>io.dapr</groupId>
6060
<artifactId>dapr-sdk-springboot</artifactId>
61-
<version>1.11.0</version>
61+
<version>1.12.0</version>
6262
</dependency>
6363
...
6464
</dependencies>
@@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
7676
dependencies {
7777
...
7878
// Dapr's core SDK with all features, except Actors.
79-
compile('io.dapr:dapr-sdk:1.11.0')
79+
compile('io.dapr:dapr-sdk:1.12.0')
8080
// Dapr's SDK for Actors (optional).
81-
compile('io.dapr:dapr-sdk-actors:1.11.0')
81+
compile('io.dapr:dapr-sdk-actors:1.12.0')
8282
// Dapr's SDK integration with SpringBoot (optional).
83-
compile('io.dapr:dapr-sdk-springboot:1.11.0')
83+
compile('io.dapr:dapr-sdk-springboot:1.12.0')
8484
}
8585
```
8686

@@ -96,7 +96,7 @@ You can fix this by specifying a compatible `OkHttp` version in your project to
9696
<dependency>
9797
<groupId>com.squareup.okhttp3</groupId>
9898
<artifactId>okhttp</artifactId>
99-
<version>1.11.0</version>
99+
<version>1.12.0</version>
100100
</dependency>
101101
```
102102

0 commit comments

Comments
 (0)
Please sign in to comment.