Skip to content

Commit 0fef9e0

Browse files
author
Mark Pollack
committed
Bump version to 0.10.0-SNAPSHOT
Also fix release workflow permissions for tag/push operations.
1 parent 524ed83 commit 0fef9e0

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ on:
1717
default: false
1818
type: boolean
1919

20+
permissions:
21+
contents: write
22+
2023
jobs:
2124
release:
2225
runs-on: ubuntu-latest
2326

2427
steps:
2528
- uses: actions/checkout@v4
29+
with:
30+
token: ${{ secrets.GITHUB_TOKEN }}
2631

2732
- name: Set up JDK 17
2833
uses: actions/setup-java@v4

acp-agent-support/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.agentclientprotocol</groupId>
99
<artifactId>acp-java-sdk</artifactId>
10-
<version>0.9.0-SNAPSHOT</version>
10+
<version>0.10.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>acp-agent-support</artifactId>

acp-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.agentclientprotocol</groupId>
99
<artifactId>acp-java-sdk</artifactId>
10-
<version>0.9.0-SNAPSHOT</version>
10+
<version>0.10.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>acp-annotations</artifactId>

acp-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.agentclientprotocol</groupId>
99
<artifactId>acp-java-sdk</artifactId>
10-
<version>0.9.0-SNAPSHOT</version>
10+
<version>0.10.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>acp-core</artifactId>

acp-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.agentclientprotocol</groupId>
99
<artifactId>acp-java-sdk</artifactId>
10-
<version>0.9.0-SNAPSHOT</version>
10+
<version>0.10.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>acp-test</artifactId>

acp-websocket-jetty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.agentclientprotocol</groupId>
99
<artifactId>acp-java-sdk</artifactId>
10-
<version>0.9.0-SNAPSHOT</version>
10+
<version>0.10.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>acp-websocket-jetty</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.agentclientprotocol</groupId>
88
<artifactId>acp-java-sdk</artifactId>
9-
<version>0.9.0-SNAPSHOT</version>
9+
<version>0.10.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>ACP Java SDK</name>

0 commit comments

Comments
 (0)