Skip to content

Commit 2a97566

Browse files
chore: release 0.2.0
1 parent a6600b0 commit 2a97566

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ max_line_length = off
1919
[.editorconfig]
2020
max_line_length = off
2121

22-
[*.{json,yml,toml}]
22+
[*.{json,yml,toml,xml}]
2323
indent_size = 2
2424

2525
# noinspection EditorConfigKeyCorrectness

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
publishLinuxArm64PublicationToLocalRepository
3636
- os: windows-latest
3737
platform: Windows
38-
targets: :kbigint:publishMingwX64PublicationToLocalRepository
38+
targets: publishMingwX64PublicationToLocalRepository
3939
- os: macos-14
4040
platform: macOS/iOS
4141
targets: >-
@@ -110,10 +110,11 @@ jobs:
110110
merge-multiple: true
111111
- name: Upload bundle
112112
run: |-
113-
url="$SONATYPE_API/upload?publishingType=USER_MANAGED"
113+
url="$SONATYPE_API/upload?name=kbigint-${GITHUB_REF_NAME}.zip&publishingType=USER_MANAGED"
114114
(cd kbigint && zip -qr ../kbigint.zip *)
115115
printf >> "$GITHUB_ENV" 'DEPLOYMENT_ID=%s\n' $(curl -Ssf -Fbundle=@kbigint.zip -H "$SONATYPE_AUTH" "$url")
116116
- name: Verify status
117+
timeout-minutes: 5
117118
run: |-
118119
url="$SONATYPE_API/status?id=$DEPLOYMENT_ID"
119120
while [[ ${state:=PENDING} == PENDING ]] || [[ $state == VALIDATING ]]; do

.idea/vcs.xml

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ allprojects {
1919

2020
subprojects {
2121
group = "io.github.observeroftime.kbigint"
22-
version = "0.1.2"
22+
version = "0.2.0"
2323

2424
if (System.getenv("CI") != null) {
2525
tasks.withType(AbstractTestTask::class) {

0 commit comments

Comments
 (0)