diff --git a/CHANGELOG.md b/CHANGELOG.md
index c6918c2..f9a0f38 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## [Unreleased]
+## [2.3.5] - 2022-12-09
+### Fixed
+ - Fixed wrong minimum iOS deployment target when using Carthage.
+
## [2.3.4] - 2022-11-09
### Fixed
- Added missing `UIKit` import when using Swift Package Manager.
@@ -110,7 +114,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## [1.1.14] - 2018-20-12
### Changed
-- Fix fade-out animation not working in iOS 12 (https://openradar.appspot.com/46753872)
+- Fixed fade-out animation not working in iOS 12 (https://openradar.appspot.com/46753872)
## [1.1.13] - 2018-14-11
### Changed
@@ -168,7 +172,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## [1.1.3] - 2017-09-25
### Fixed
- - Fix never adding gradient view to "keyWindow" if it is not available on first call to "show()"
+ - Fixed never adding gradient view to "keyWindow" if it is not available on first call to "show()"
## [1.1.2] - 2017-08-27
### Added
@@ -178,8 +182,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## [1.1.1] - 2017-08-18
### Fixed
- - Fix optical animation issue
- - Fix orientation change bug
+ - Fixed optical animation issue
+ - Fixed orientation change bug
### Changed
- Refactor entire code
- Lint code
@@ -192,7 +196,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
- Initial release
-[Unreleased]: https://github.com/fxm90/GradientLoadingBar/compare/2.3.4...main
+[Unreleased]: https://github.com/fxm90/GradientLoadingBar/compare/2.3.5...main
+[2.3.5]: https://github.com/fxm90/GradientLoadingBar/compare/2.3.4...2.3.5
[2.3.4]: https://github.com/fxm90/GradientLoadingBar/compare/2.3.3...2.3.4
[2.3.3]: https://github.com/fxm90/GradientLoadingBar/compare/2.3.2...2.3.3
[2.3.2]: https://github.com/fxm90/GradientLoadingBar/compare/2.3.1...2.3.2
diff --git a/Example/Podfile.lock b/Example/Podfile.lock
index 2a02aa5..695ea36 100644
--- a/Example/Podfile.lock
+++ b/Example/Podfile.lock
@@ -1,5 +1,5 @@
PODS:
- - GradientLoadingBar (2.3.4):
+ - GradientLoadingBar (2.3.5):
- LightweightObservable (~> 2.1)
- LightweightObservable (2.2.2)
- SnapshotTesting (1.9.0)
@@ -33,7 +33,7 @@ CHECKOUT OPTIONS:
:git: https://github.com/fxm90/SwiftConfigurationFiles.git
SPEC CHECKSUMS:
- GradientLoadingBar: d9df69391d9efb4f49cf36c176ff08926faea622
+ GradientLoadingBar: 97d0b455027194409b50c3fd589728ea7d79f08d
LightweightObservable: 6a106f0d60d497ee1ebd90ff549b54ac7abf3c36
SnapshotTesting: 6141c48b6aa76ead61431ca665c14ab9a066c53b
SwiftConfigurationFiles: 1cf2228a911ebed9f42f8dec077bb634f04ca6c8
diff --git a/Example/Pods/Local Podspecs/GradientLoadingBar.podspec.json b/Example/Pods/Local Podspecs/GradientLoadingBar.podspec.json
index 690610c..73f9b2c 100644
--- a/Example/Pods/Local Podspecs/GradientLoadingBar.podspec.json
+++ b/Example/Pods/Local Podspecs/GradientLoadingBar.podspec.json
@@ -1,6 +1,6 @@
{
"name": "GradientLoadingBar",
- "version": "2.3.4",
+ "version": "2.3.5",
"summary": "A customizable animated gradient loading bar.",
"description": "A customizable animated gradient loading bar.\nInspired by https://codepen.io/marcobiedermann/pen/LExXWW",
"homepage": "https://github.com/fxm90/GradientLoadingBar",
@@ -14,7 +14,7 @@
},
"source": {
"git": "https://github.com/fxm90/GradientLoadingBar.git",
- "tag": "2.3.4"
+ "tag": "2.3.5"
},
"swift_versions": "5.5",
"platforms": {
diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock
index 2a02aa5..695ea36 100644
--- a/Example/Pods/Manifest.lock
+++ b/Example/Pods/Manifest.lock
@@ -1,5 +1,5 @@
PODS:
- - GradientLoadingBar (2.3.4):
+ - GradientLoadingBar (2.3.5):
- LightweightObservable (~> 2.1)
- LightweightObservable (2.2.2)
- SnapshotTesting (1.9.0)
@@ -33,7 +33,7 @@ CHECKOUT OPTIONS:
:git: https://github.com/fxm90/SwiftConfigurationFiles.git
SPEC CHECKSUMS:
- GradientLoadingBar: d9df69391d9efb4f49cf36c176ff08926faea622
+ GradientLoadingBar: 97d0b455027194409b50c3fd589728ea7d79f08d
LightweightObservable: 6a106f0d60d497ee1ebd90ff549b54ac7abf3c36
SnapshotTesting: 6141c48b6aa76ead61431ca665c14ab9a066c53b
SwiftConfigurationFiles: 1cf2228a911ebed9f42f8dec077bb634f04ca6c8
diff --git a/Example/Pods/Target Support Files/GradientLoadingBar/GradientLoadingBar-Info.plist b/Example/Pods/Target Support Files/GradientLoadingBar/GradientLoadingBar-Info.plist
index 97e435d..4beee3e 100644
--- a/Example/Pods/Target Support Files/GradientLoadingBar/GradientLoadingBar-Info.plist
+++ b/Example/Pods/Target Support Files/GradientLoadingBar/GradientLoadingBar-Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.3.4
+ 2.3.5
CFBundleSignature
????
CFBundleVersion
diff --git a/GradientLoadingBar.podspec b/GradientLoadingBar.podspec
index 1397870..a59bfab 100644
--- a/GradientLoadingBar.podspec
+++ b/GradientLoadingBar.podspec
@@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = 'GradientLoadingBar'
- s.version = '2.3.4'
+ s.version = '2.3.5'
s.summary = 'A customizable animated gradient loading bar.'
# This description is used to generate tags and improve search results.