Skip to content

Commit

Permalink
Fix: Duplicate actions emission
Browse files Browse the repository at this point in the history
By using another channel to make sure the action passes through middlewares before it receives another Action.
Update Android Gradle Plugin.
  • Loading branch information
abhimuktheeswarar committed Oct 29, 2021
1 parent ed02c55 commit f0d0f0c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Flywheel.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'Flywheel'
spec.version = '1.1.3-RC'
spec.version = '1.1.4-RC'
spec.homepage = 'https://github.com/abhimuktheeswarar/Flywheel'
spec.source = { :git => "https://github.com/abhimuktheeswarar/Flywheel.git", :tag => "v#{spec.version}" }
spec.authors = 'Abhi Muktheeswarar'
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("com.msabhi:flywheel:1.1.3-RC")
implementation("com.msabhi:flywheel:1.1.4-RC")
}
}
}
Expand All @@ -41,7 +41,7 @@ kotlin {
```Kotlin
dependencies {

implementation("com.msabhi:flywheel-android:1.1.3-RC")
implementation("com.msabhi:flywheel-android:1.1.4-RC")
}
```

Expand All @@ -56,7 +56,7 @@ use_frameworks!
target 'MyApp' do
pod 'Flywheel', '~> 1.1.3-RC'
pod 'Flywheel', '~> 1.1.4-RC'
end
```
Expand All @@ -70,7 +70,7 @@ import PackageDescription
let package = Package(
name: "YOUR_PROJECT_NAME",
dependencies: [
.package(url: "https://github.com/abhimuktheeswarar/Flywheel.git", from: "1.1.3-RC"),
.package(url: "https://github.com/abhimuktheeswarar/Flywheel.git", from: "1.1.4-RC"),
]
)
```
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object Versions {
const val minSdk = 21
const val targetSdk = 29
const val buildTools = "30.0.3"
const val androidGradlePlugin = "7.0.2"
const val androidGradlePlugin = "7.0.3"

const val appCompat = "1.3.0"
const val core = "1.6.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ kotlin.native.enableDependencyPropagation=false
org.gradle.daemon=true
org.gradle.jvmargs=-Xmx2560m
GROUP=com.msabhi
VERSION_NAME=1.1.4-SNAPSHOT
VERSION_NAME=1.1.4-RC
POM_NAME=Flywheel
POM_DESCRIPTION=Kotlin-Multiplatform state management library
POM_URL=https://github.com/abhimuktheeswarar/Flywheel
Expand Down

0 comments on commit f0d0f0c

Please sign in to comment.