Skip to content

Commit 39412d6

Browse files
authored
Merge branch 'master' into workflows-1164
2 parents 6227935 + dec757c commit 39412d6

File tree

1,264 files changed

+3811
-3811
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,264 files changed

+3811
-3811
lines changed

.github/scripts/create-release.sh

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ if [ "$VARIANT" = "SNAPSHOT" ]; then
4242
git checkout -b $branch_name
4343
${script_dir}/update_sdk_version.sh $REL_VERSION
4444
git clean -xdf
45-
git commit -s -m "Update master version to ${$REL_VERSION}" -a
45+
git commit -s -m "Update master version to ${REL_VERSION}" -a
4646
git push origin $branch_name
4747
gh pr create --repo ${GITHUB_REPOSITORY} \
4848
--base master \
49-
--title "Update master version to ${$REL_VERSION}" \
50-
--body "Update master version to ${$REL_VERSION}"
49+
--title "Update master version to ${REL_VERSION}" \
50+
--body "Update master version to ${REL_VERSION}"
5151
echo "Done."
5252
exit 0
5353
elif [ "$VARIANT" = "rc" ]; then
@@ -84,26 +84,26 @@ fi
8484
echo "$RELEASE_BRANCH branch is ready."
8585

8686
if [ `git rev-parse --verify $RELEASE_TAG 2>/dev/null` ]; then
87-
echo "$RELEASE_TAG tag already exists, aborting ..."
88-
exit 2
89-
fi
90-
91-
${script_dir}/update_sdk_version.sh $REL_VERSION
92-
git commit -s -m "Release $REL_VERSION" -a
93-
if [ "$VARIANT" = "" ]; then
94-
echo "Generating docs ..."
95-
${script_dir}/update_docs.sh $REL_VERSION
96-
git commit -s -m "Generate updated javadocs for $REL_VERSION" -a
97-
fi
98-
git push origin $RELEASE_BRANCH
87+
echo "$RELEASE_TAG tag already exists, checking it out ..."
88+
git checkout $RELEASE_TAG
89+
else
90+
${script_dir}/update_sdk_version.sh $REL_VERSION
91+
git commit -s -m "Release $REL_VERSION" -a
92+
if [ "$VARIANT" = "" ]; then
93+
echo "Generating docs ..."
94+
${script_dir}/update_docs.sh $REL_VERSION
95+
git commit -s -m "Generate updated javadocs for $REL_VERSION" -a
96+
fi
97+
git push origin $RELEASE_BRANCH
9998

100-
echo "Tagging $RELEASE_TAG ..."
101-
git tag $RELEASE_TAG
102-
echo "$RELEASE_TAG is tagged."
99+
echo "Tagging $RELEASE_TAG ..."
100+
git tag $RELEASE_TAG
101+
echo "$RELEASE_TAG is tagged."
103102

104-
echo "Pushing $RELEASE_TAG tag ..."
105-
git push origin $RELEASE_TAG
106-
echo "$RELEASE_TAG tag is pushed."
103+
echo "Pushing $RELEASE_TAG tag ..."
104+
git push origin $RELEASE_TAG
105+
echo "$RELEASE_TAG tag is pushed."
106+
fi
107107

108108
if [ "$VARIANT" = "" ]; then
109109
git clean -xdf
@@ -114,8 +114,8 @@ if [ "$VARIANT" = "" ]; then
114114
git push origin $branch_name
115115
gh pr create --repo ${GITHUB_REPOSITORY} \
116116
--base master \
117-
--title "Update master docs for ${$REL_VERSION} release" \
118-
--body "Update master docs for ${$REL_VERSION} release"
117+
--title "Update master docs for ${REL_VERSION} release" \
118+
--body "Update master docs for ${REL_VERSION} release"
119119
fi
120120

121121
echo "Done."

.github/scripts/update_docs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ rm -f daprdocs/content/en/java-sdk-docs/_index.mdbak || echo
2727
rm -f daprdocs/content/en/java-sdk-docs/spring-boot/_index.md/_index.mdbak || echo
2828

2929
rm -rf docs
30-
./mvnw -Dmaven.test.skip=false -Djacoco.skip=true clean install
31-
./mvnw site-deploy
30+
./mvnw -Dmaven.test.skip=true -Djacoco.skip=true clean install
31+
./mvnw -Dmaven.test.skip=true -Djacoco.skip=true site-deploy

.github/workflows/create-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,18 @@ jobs:
2525
create-release:
2626
name: Creates release branch and tag
2727
runs-on: ubuntu-latest
28+
env:
29+
JDK_VER: '17'
2830
steps:
2931
- name: Check out code
3032
uses: actions/checkout@v4
3133
with:
3234
fetch-depth: 0
35+
- name: Set up OpenJDK ${{ env.JDK_VER }}
36+
uses: actions/setup-java@v4
37+
with:
38+
distribution: 'temurin'
39+
java-version: ${{ env.JDK_VER }}
3340
- name: Install required packages
3441
run: |
3542
sudo apt-get update

README.md

Lines changed: 6 additions & 6 deletions
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.12.0</version>
52+
<version>1.13.1</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.12.0</version>
58+
<version>1.13.1</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.12.0</version>
64+
<version>1.13.1</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.12.0')
78+
compile('io.dapr:dapr-sdk:1.13.1')
7979
// Dapr's SDK for Actors (optional).
80-
compile('io.dapr:dapr-sdk-actors:1.12.0')
80+
compile('io.dapr:dapr-sdk-actors:1.13.1')
8181
// Dapr's SDK integration with SpringBoot (optional).
82-
compile('io.dapr:dapr-sdk-springboot:1.12.0')
82+
compile('io.dapr:dapr-sdk-springboot:1.13.1')
8383
}
8484
```
8585

dapr-spring/dapr-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.13.0-SNAPSHOT</version>
9+
<version>0.14.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-boot-autoconfigure</artifactId>

dapr-spring/dapr-spring-boot-starters/dapr-spring-boot-starter-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.13.0-SNAPSHOT</version>
9+
<version>0.14.0-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

dapr-spring/dapr-spring-boot-starters/dapr-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.13.0-SNAPSHOT</version>
9+
<version>0.14.0-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

dapr-spring/dapr-spring-boot-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.13.0-SNAPSHOT</version>
9+
<version>0.14.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-boot-tests</artifactId>

dapr-spring/dapr-spring-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.13.0-SNAPSHOT</version>
9+
<version>0.14.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-data</artifactId>

dapr-spring/dapr-spring-messaging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.13.0-SNAPSHOT</version>
9+
<version>0.14.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-messaging</artifactId>

0 commit comments

Comments
 (0)