@@ -46,19 +46,19 @@ For a Maven project, add the following to your `pom.xml` file:
46
46
<dependency >
47
47
<groupId >io.dapr</groupId >
48
48
<artifactId >dapr-sdk</artifactId >
49
- <version >1.13.0 </version >
49
+ <version >1.13.1 </version >
50
50
</dependency >
51
51
<!-- Dapr's SDK for Actors (optional). -->
52
52
<dependency >
53
53
<groupId >io.dapr</groupId >
54
54
<artifactId >dapr-sdk-actors</artifactId >
55
- <version >1.13.0 </version >
55
+ <version >1.13.1 </version >
56
56
</dependency >
57
57
<!-- Dapr's SDK integration with SpringBoot (optional). -->
58
58
<dependency >
59
59
<groupId >io.dapr</groupId >
60
60
<artifactId >dapr-sdk-springboot</artifactId >
61
- <version >1.13.0 </version >
61
+ <version >1.13.1 </version >
62
62
</dependency >
63
63
...
64
64
</dependencies >
@@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
76
76
dependencies {
77
77
...
78
78
// Dapr's core SDK with all features, except Actors.
79
- compile(' io.dapr:dapr-sdk:1.13.0 ' )
79
+ compile(' io.dapr:dapr-sdk:1.13.1 ' )
80
80
// Dapr's SDK for Actors (optional).
81
- compile(' io.dapr:dapr-sdk-actors:1.13.0 ' )
81
+ compile(' io.dapr:dapr-sdk-actors:1.13.1 ' )
82
82
// Dapr's SDK integration with SpringBoot (optional).
83
- compile(' io.dapr:dapr-sdk-springboot:1.13.0 ' )
83
+ compile(' io.dapr:dapr-sdk-springboot:1.13.1 ' )
84
84
}
85
85
```
86
86
@@ -96,7 +96,7 @@ You can fix this by specifying a compatible `OkHttp` version in your project to
96
96
<dependency >
97
97
<groupId >com.squareup.okhttp3</groupId >
98
98
<artifactId >okhttp</artifactId >
99
- <version >1.13.0 </version >
99
+ <version >1.13.1 </version >
100
100
</dependency >
101
101
```
102
102
0 commit comments