Skip to content

Commit

Permalink
up version
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex009 committed Oct 19, 2019
1 parent f405ab2 commit 95f92e3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MultiPlatformLibraryMvvm.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'MultiPlatformLibraryMvvm'
spec.version = '0.1.0'
spec.version = '0.3.0'
spec.homepage = 'https://github.com/icerockdev/moko-mvvm'
spec.source = { :git => "https://github.com/icerockdev/moko-mvvm.git", :tag => "release/#{spec.version}" }
spec.authors = 'IceRock Development'
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ This is a Kotlin Multiplatform library that provides architecture components of
- kotlin 1.3.50
- 0.1.0
- 0.2.0
- 0.3.0

## Installation
root build.gradle
Expand All @@ -44,7 +45,7 @@ allprojects {
project build.gradle
```groovy
dependencies {
commonMainApi("dev.icerock.moko:mvvm:0.2.0")
commonMainApi("dev.icerock.moko:mvvm:0.3.0")
}
```

Expand All @@ -55,7 +56,7 @@ enableFeaturePreview("GRADLE_METADATA")

On iOS, in addition to the Kotlin library add in Podfile
```ruby
pod 'MultiPlatformLibraryMvvm', :git => 'https://github.com/icerockdev/moko-mvvm.git', :tag => 'release/0.2.0'
pod 'MultiPlatformLibraryMvvm', :git => 'https://github.com/icerockdev/moko-mvvm.git', :tag => 'release/0.3.0'
```
**`MultiPlatformLibraryMvvm` CocoaPod requires that the framework compiled from Kotlin be named
`MultiPlatformLibrary` and be connected as a CocoaPod `MultiPlatformLibrary`.
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ object Versions {
const val coroutines = "1.3.0"
const val mokoCore: String = "0.1.0"
const val mokoResources: String = "0.3.0"
const val mokoMvvm: String = "0.2.0"
const val mokoMvvm: String = "0.3.0"
}
}
}
2 changes: 1 addition & 1 deletion sample/ios-app/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ target 'TestProj' do
# MultiPlatformLibrary
# для корректной установки фреймворка нужно сначала скомпилировать котлин библиотеку - compile-kotlin-framework.sh (в корневой директории репозитория)
pod 'MultiPlatformLibrary', :path => '../mpp-library'
pod 'MultiPlatformLibraryMvvm', :git => 'https://github.com/icerockdev/moko-mvvm.git', :tag => 'release/0.2.0'
pod 'MultiPlatformLibraryMvvm', :git => 'https://github.com/icerockdev/moko-mvvm.git', :tag => 'release/0.3.0'
pod 'MultiPlatformLibraryResources', :git => 'https://github.com/icerockdev/moko-resources.git', :tag => 'release/0.3.0'
end

0 comments on commit 95f92e3

Please sign in to comment.