diff --git a/CHANGELOG.md b/CHANGELOG.md
index 12a9fd2..deabb33 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 1.4.1
+
+- Fixes a problem where onErrorRepeat would not respect the specified delay interval.
+- Fixed issues with tvOS support.
+- Updates some transforms such as `toVoid()` to schedule on `.none` instead of `.current` so these transforms won't cause a re-schedule.
+
# 1.4
- Updated the `Signal.flatMapLatest()` transformation to allow more flexible mixing of signal types between `self` and the signal returned from `transform`.
diff --git a/Flow/Info.plist b/Flow/Info.plist
index 8bce5c7..07b3f7e 100644
--- a/Flow/Info.plist
+++ b/Flow/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.4.0
+ 1.4.1
CFBundleSignature
????
CFBundleVersion
diff --git a/FlowFramework.podspec b/FlowFramework.podspec
index 0957633..afc03ad 100644
--- a/FlowFramework.podspec
+++ b/FlowFramework.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "FlowFramework"
- s.version = "1.4.0"
+ s.version = "1.4.1"
s.module_name = "Flow"
s.summary = "Working with asynchronous flows"
s.description = <<-DESC