Skip to content

Commit c50dca6

Browse files
Merge pull request #13 from CASParser/release-please--branches--main--changes--next
release: 0.5.4
2 parents a99dff1 + ba973db commit c50dca6

File tree

8 files changed

+24
-13
lines changed

8 files changed

+24
-13
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 15
2020
name: lint
2121
runs-on: ${{ github.repository == 'stainless-sdks/cas-parser-java' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
22-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
22+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
2323

2424
steps:
2525
- uses: actions/checkout@v6
@@ -46,7 +46,7 @@ jobs:
4646
contents: read
4747
id-token: write
4848
runs-on: ${{ github.repository == 'stainless-sdks/cas-parser-java' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
49-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
49+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
5050

5151
steps:
5252
- uses: actions/checkout@v6

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.prism.log
2+
.stdy.log
23
.gradle
34
.idea
45
.kotlin

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.3"
2+
".": "0.5.4"
33
}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.5.4 (2026-03-25)
4+
5+
Full Changelog: [v0.5.3...v0.5.4](https://github.com/CASParser/cas-parser-java/compare/v0.5.3...v0.5.4)
6+
7+
### Chores
8+
9+
* **ci:** skip lint on metadata-only changes ([89956e4](https://github.com/CASParser/cas-parser-java/commit/89956e4048cbc55a81af8d051f53f82502e20f35))
10+
* **internal:** bump ktfmt ([2025e61](https://github.com/CASParser/cas-parser-java/commit/2025e61fad0e83bf7ba51c61481a1bdba1243df8))
11+
* **internal:** update gitignore ([01a52f2](https://github.com/CASParser/cas-parser-java/commit/01a52f2b2a1416aea6ef39bc7bfadc8ba1cb9646))
12+
313
## 0.5.3 (2026-03-18)
414

515
Full Changelog: [v0.5.2...v0.5.3](https://github.com/CASParser/cas-parser-java/compare/v0.5.2...v0.5.3)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<!-- x-release-please-start-version -->
44

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.cas_parser.api/cas-parser-java)](https://central.sonatype.com/artifact/com.cas_parser.api/cas-parser-java/0.5.3)
6-
[![javadoc](https://javadoc.io/badge2/com.cas_parser.api/cas-parser-java/0.5.3/javadoc.svg)](https://javadoc.io/doc/com.cas_parser.api/cas-parser-java/0.5.3)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.cas_parser.api/cas-parser-java)](https://central.sonatype.com/artifact/com.cas_parser.api/cas-parser-java/0.5.4)
6+
[![javadoc](https://javadoc.io/badge2/com.cas_parser.api/cas-parser-java/0.5.4/javadoc.svg)](https://javadoc.io/doc/com.cas_parser.api/cas-parser-java/0.5.4)
77

88
<!-- x-release-please-end -->
99

@@ -22,7 +22,7 @@ Use the Cas Parser MCP Server to enable AI assistants to interact with this API,
2222
2323
<!-- x-release-please-start-version -->
2424

25-
The REST API documentation can be found on [casparser.in](https://casparser.in/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.cas_parser.api/cas-parser-java/0.5.3).
25+
The REST API documentation can be found on [casparser.in](https://casparser.in/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.cas_parser.api/cas-parser-java/0.5.4).
2626

2727
<!-- x-release-please-end -->
2828

@@ -33,7 +33,7 @@ The REST API documentation can be found on [casparser.in](https://casparser.in/d
3333
### Gradle
3434

3535
```kotlin
36-
implementation("com.cas_parser.api:cas-parser-java:0.5.3")
36+
implementation("com.cas_parser.api:cas-parser-java:0.5.4")
3737
```
3838

3939
### Maven
@@ -42,7 +42,7 @@ implementation("com.cas_parser.api:cas-parser-java:0.5.3")
4242
<dependency>
4343
<groupId>com.cas_parser.api</groupId>
4444
<artifactId>cas-parser-java</artifactId>
45-
<version>0.5.3</version>
45+
<version>0.5.4</version>
4646
</dependency>
4747
```
4848

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99

1010
allprojects {
1111
group = "com.cas_parser.api"
12-
version = "0.5.3" // x-release-please-version
12+
version = "0.5.4" // x-release-please-version
1313
}
1414

1515
subprojects {

buildSrc/src/main/kotlin/cas-parser.kotlin.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tasks.withType<Test>().configureEach {
4040

4141
val ktfmt by configurations.creating
4242
dependencies {
43-
ktfmt("com.facebook:ktfmt:0.56")
43+
ktfmt("com.facebook:ktfmt:0.61")
4444
}
4545

4646
fun registerKtfmt(

scripts/fast-format

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ if [ ! -f "$FILE_LIST" ]; then
2424
exit 1
2525
fi
2626

27-
if ! command -v ktfmt-fast-format &> /dev/null; then
28-
echo "Error: ktfmt-fast-format not found"
27+
if ! command -v ktfmt &> /dev/null; then
28+
echo "Error: ktfmt not found"
2929
exit 1
3030
fi
3131

@@ -36,7 +36,7 @@ echo "==> Done looking for Kotlin files"
3636

3737
if [[ -n "$kt_files" ]]; then
3838
echo "==> will format Kotlin files"
39-
echo "$kt_files" | tr '\n' '\0' | xargs -0 ktfmt-fast-format --kotlinlang-style "$@"
39+
echo "$kt_files" | tr '\n' '\0' | xargs -0 ktfmt --kotlinlang-style "$@"
4040
else
4141
echo "No Kotlin files to format -- expected outcome during incremental formatting"
4242
fi

0 commit comments

Comments
 (0)