Skip to content

Commit

Permalink
chore: release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ObserverOfTime committed Apr 21, 2024
1 parent a6600b0 commit 2a97566
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ max_line_length = off
[.editorconfig]
max_line_length = off

[*.{json,yml,toml}]
[*.{json,yml,toml,xml}]
indent_size = 2

# noinspection EditorConfigKeyCorrectness
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
publishLinuxArm64PublicationToLocalRepository
- os: windows-latest
platform: Windows
targets: :kbigint:publishMingwX64PublicationToLocalRepository
targets: publishMingwX64PublicationToLocalRepository
- os: macos-14
platform: macOS/iOS
targets: >-
Expand Down Expand Up @@ -110,10 +110,11 @@ jobs:
merge-multiple: true
- name: Upload bundle
run: |-
url="$SONATYPE_API/upload?publishingType=USER_MANAGED"
url="$SONATYPE_API/upload?name=kbigint-${GITHUB_REF_NAME}.zip&publishingType=USER_MANAGED"
(cd kbigint && zip -qr ../kbigint.zip *)
printf >> "$GITHUB_ENV" 'DEPLOYMENT_ID=%s\n' $(curl -Ssf -Fbundle=@kbigint.zip -H "$SONATYPE_AUTH" "$url")
- name: Verify status
timeout-minutes: 5
run: |-
url="$SONATYPE_API/status?id=$DEPLOYMENT_ID"
while [[ ${state:=PENDING} == PENDING ]] || [[ $state == VALIDATING ]]; do
Expand Down
23 changes: 23 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ allprojects {

subprojects {
group = "io.github.observeroftime.kbigint"
version = "0.1.2"
version = "0.2.0"

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

0 comments on commit 2a97566

Please sign in to comment.