Skip to content

Commit

Permalink
Bump version to 0.2.7 because of failed uploads to Maven Central
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed Feb 6, 2021
1 parent 6791a62 commit 32dbfcc
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## Descriptive changelog
(All dates are DD.MM.YYYY)
##### 0.2.5 - SNAPSHOT
##### 0.2.8 - SNAPSHOT

##### 0.2.7 - 6.2.2021
Same as 0.2.4 just a successful upload and release to Maven central

##### 0.2.5 - 0.2.6 - 5.2.2021
Failed uploads to maven central, don't use these versions.
https://status.maven.org/incidents/z70skgbq8vgc

##### 0.2.4 - 5.2.2021
- Bump to kotlin 1.4.30
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ and bug-fixing.

#### Gradle
```kotlin
implementation("com.ionspin.kotlin:bignum:0.2.4")
implementation("com.ionspin.kotlin:bignum:0.2.7")
```

#### Snapshot builds
Expand All @@ -36,7 +36,7 @@ repositories {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
implementation("com.ionspin.kotlin:bignum:0.2.5-SNAPSHOT ")
implementation("com.ionspin.kotlin:bignum:0.2.8-SNAPSHOT ")

```

Expand Down
2 changes: 1 addition & 1 deletion bignum/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repositories {
jcenter()
}
group = "com.ionspin.kotlin"
version = "0.2.5-SNAPSHOT"
version = "0.2.8-SNAPSHOT"

val ideaActive = System.getProperty("idea.active") == "true"

Expand Down
9 changes: 9 additions & 0 deletions publishToMavenOneByOne.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

./gradlew publishJsPublicationToMavenRepository || exit 1
./gradlew publishJvmPublicationToMavenRepository || exit 1
./gradlew publishKotlinMultiplatformPublicationToMavenRepository || exit 1
./gradlew publishLinuxArm32HfpPublicationToMavenRepository || exit 1
./gradlew publishLinuxArm64PublicationToMavenRepository || exit 1
./gradlew publishLinuxPublicationToMavenRepository || exit 1
./gradlew publishMetadataPublicationToMavenRepository || exit 1

0 comments on commit 32dbfcc

Please sign in to comment.