Skip to content

Commit

Permalink
Release 0.1.1 (#16)
Browse files Browse the repository at this point in the history
* Release 0.1.1

* Now we don't rely on a specific version in the "perftest", we just use the source version to remove a specific version from our config.
  • Loading branch information
handstandsam authored Sep 14, 2022
1 parent abdad10 commit 17e6dec
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 14 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log


## Version 0.1.1

_2022-09-14_

See: [0.1.1 Milestone](https://github.com/handstandsam/kmp4free/milestone/1?closed=1)

* Fix: Reduced noisy logging to info level. by [@handstandsam](https://github.com/handstandsam), Reported by [@devPalacio](https://github.com/devPalacio) in [#40](https://github.com/handstandsam/kmp4free/issues/11)
* Fix: Java Resources not included from `jvmMain/resources` by [@jonamireh](https://github.com/jonamireh), in [#15](https://github.com/handstandsam/kmp4free/issues/15)

## Version 0.1.0

_2022-07-29_
Expand Down
13 changes: 6 additions & 7 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ Releasing

1. Change the version in `kmp4free/gradle.properties` to a non-SNAPSHOT version.
2. Update the `README.md` to reflect the new version number.
3. Update the `CHANGELOG.md` for the impending release.
4. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version)
5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
6. `git push && git push --tags` to trigger CI to deploy the release.
7. Update the `gradle.properties` to the next SNAPSHOT version.
8. `git commit -am "Prepare next development version."`
9. `git push`
3. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version)
4. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
5. `git push && git push --tags` to trigger CI to deploy the release.
6. Update the `gradle.properties` to the next SNAPSHOT version.
7. `git commit -am "Prepare next development version."`
8. `git push`
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath("com.handstandsam.kmp4free:kmp4free:0.1.0-SNAPSHOT")
classpath("com.handstandsam.kmp4free:kmp4free")
classpath(libs.android.gradle.plugin)
}
}
Expand Down
2 changes: 1 addition & 1 deletion kmp4free/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.handstandsam.kmp4free
VERSION_NAME=0.1.1-SNAPSHOT
VERSION_NAME=0.1.1

POM_ARTIFACT_ID=kmp4free
POM_NAME=kmp4free
Expand Down
11 changes: 6 additions & 5 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ if (perftestTarget!=null && !perftestTarget.isEmpty()) {
include ':samples:jvm_kmp4free'
include ':samples:multiplatform'
include ':samples:multiplatform_kmp4free'
// Use Source
includeBuild('kmp4free') {
dependencySubstitution {
substitute module('com.handstandsam.kmp4free:kmp4free') using project(':')
}
}

// Use Source
includeBuild('kmp4free') {
dependencySubstitution {
substitute module('com.handstandsam.kmp4free:kmp4free') using project(':')
}
}

0 comments on commit 17e6dec

Please sign in to comment.