Skip to content

Commit 0f89033

Browse files
anconguiclaude
andcommitted
release: bump version to 26.01.01 and add CI/release workflows
- Migrate version from 1.0.0-SNAPSHOT to CalVer 26.01.01 - Add GitHub Actions CI workflow (triggers on develop push and PRs) - Add GitHub Actions release workflow (triggers on v* tags, deploys to GitHub Packages) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f581eae commit 0f89033

4 files changed

Lines changed: 27 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [develop]
5+
pull_request:
6+
branches: [develop, main]
7+
jobs:
8+
build:
9+
uses: fireflyframework/.github/.github/workflows/java-ci.yml@main
10+
with:
11+
java-version: '25'

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Release
2+
on:
3+
push:
4+
tags: ['v*']
5+
jobs:
6+
release:
7+
uses: fireflyframework/.github/.github/workflows/java-release.yml@main
8+
with:
9+
java-version: '25'
10+
permissions:
11+
contents: write
12+
packages: write

examples/complete-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>org.fireflyframework.example</groupId>
99
<artifactId>complete-example</artifactId>
10-
<version>1.0.0</version>
10+
<version>26.01.01</version>
1111
<packaging>jar</packaging>
1212

1313
<name>Firefly Framework - Common Client - Complete Example</name>
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>org.fireflyframework</groupId>
3434
<artifactId>fireflyframework-client</artifactId>
35-
<version>1.0.0</version>
35+
<version>26.01.01</version>
3636
</dependency>
3737

3838
<!-- Spring Boot Starters -->

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>org.fireflyframework</groupId>
99
<artifactId>fireflyframework-parent</artifactId>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>26.01.01</version>
1111
</parent>
1212

1313
<artifactId>fireflyframework-client</artifactId>
14-
<version>1.0.0-SNAPSHOT</version>
14+
<version>26.01.01</version>
1515
<packaging>jar</packaging>
1616

1717
<name>Firefly Framework - Common Client Library</name>

0 commit comments

Comments
 (0)