Skip to content

Commit

Permalink
Change version to 0.1 because -alpha is redundant with 0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
russhwolf committed Sep 9, 2018
1 parent 24e9b0c commit 246d920
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ First, add the multiplatform-settings bintray url to the `repositories` block of

In your `kotlin-platform-common` module, add the dependency

implementation "com.russhwolf:multiplatform-settings-common:0.1-alpha5"
implementation "com.russhwolf:multiplatform-settings-common:0.1"

In your `kotlin-platform-android` module, add an `expectedBy` dependency on the common module as well as the dependency

implementation "com.russhwolf:multiplatform-settings-android:0.1-alpha5"
implementation "com.russhwolf:multiplatform-settings-android:0.1"

In your `kotlin-platform-ios` module, add an `expectedBy` dependency on the common module as well the dependency

implementation "com.russhwolf:multiplatform-settings-ios:0.1-alpha5"
implementation "com.russhwolf:multiplatform-settings-ios:0.1"

See also the sample project, which uses this structure.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ configure(subprojects.findAll { libs.contains(it.name) }) {
def platform = platformOf(project)

group 'com.russhwolf'
version '0.1-alpha5'
version '0.1'

repositories {
google()
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

buildscript {
ext.kotlin_version = '1.2.61'
ext.library_version = '0.1-alpha5'
ext.library_version = '0.1'
repositories {
google()
jcenter()
Expand Down

0 comments on commit 246d920

Please sign in to comment.