From 456227eeb04bc22b626caf298cb01b997551d560 Mon Sep 17 00:00:00 2001 From: Felix Mau Date: Wed, 12 May 2021 19:07:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20::=20Bump=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 ++++++++- Example/Podfile.lock | 4 ++-- .../Pods/Local Podspecs/GradientLoadingBar.podspec.json | 4 ++-- Example/Pods/Manifest.lock | 4 ++-- .../GradientLoadingBar/GradientLoadingBar-Info.plist | 2 +- GradientLoadingBar.podspec | 2 +- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f9de3e..dedfb2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a ## [Unreleased] +## [2.1.1] - 2021-12-05 +### Fixed + - Showing loading bar with a masked notch on iPad Pro 12.9 ([#020]) + +[#020]: https://github.com/fxm90/GradientLoadingBar/issues/20 + ## [2.1.0] - 2020-17-06 ### Added - Added `NotchGradientLoadingBar`: A subclass of `GradientLoadingBar`, wrapping the `GradientActivityIndicatorView` around the notch of the iPhone. @@ -129,7 +135,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.1.0...master +[Unreleased]: https://github.com/fxm90/GradientLoadingBar/compare/2.1.1...master +[2.1.1]: https://github.com/fxm90/GradientLoadingBar/compare/2.1.0...2.1.1 [2.1.0]: https://github.com/fxm90/GradientLoadingBar/compare/2.0.3...2.1.0 [2.0.3]: https://github.com/fxm90/GradientLoadingBar/compare/2.0.2...2.0.3 [2.0.2]: https://github.com/fxm90/GradientLoadingBar/compare/2.0.1...2.0.2 diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 8fcafaa..d1ec17e 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - GradientLoadingBar (2.1.0): + - GradientLoadingBar (2.1.1): - LightweightObservable (~> 2.1) - LightweightObservable (2.1.2) - SnapshotTesting (1.8.2) @@ -33,7 +33,7 @@ CHECKOUT OPTIONS: :git: https://github.com/fxm90/SwiftConfigurationFiles.git SPEC CHECKSUMS: - GradientLoadingBar: a86921933436aa7a1ae9fc00079dee9dfd94d678 + GradientLoadingBar: d7ad91e4f15be604faca463efd63e541b5118dee LightweightObservable: c5ac85423a5edbed9a920b4d5c7b8f94ab3688c4 SnapshotTesting: 38947050d13960d57a4a9c166fcf51bca7d56970 SwiftConfigurationFiles: 1cf2228a911ebed9f42f8dec077bb634f04ca6c8 diff --git a/Example/Pods/Local Podspecs/GradientLoadingBar.podspec.json b/Example/Pods/Local Podspecs/GradientLoadingBar.podspec.json index 5326cff..243da6e 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.1.0", + "version": "2.1.1", "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.1.0" + "tag": "2.1.1" }, "swift_versions": "5.1", "platforms": { diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 8fcafaa..d1ec17e 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,5 +1,5 @@ PODS: - - GradientLoadingBar (2.1.0): + - GradientLoadingBar (2.1.1): - LightweightObservable (~> 2.1) - LightweightObservable (2.1.2) - SnapshotTesting (1.8.2) @@ -33,7 +33,7 @@ CHECKOUT OPTIONS: :git: https://github.com/fxm90/SwiftConfigurationFiles.git SPEC CHECKSUMS: - GradientLoadingBar: a86921933436aa7a1ae9fc00079dee9dfd94d678 + GradientLoadingBar: d7ad91e4f15be604faca463efd63e541b5118dee LightweightObservable: c5ac85423a5edbed9a920b4d5c7b8f94ab3688c4 SnapshotTesting: 38947050d13960d57a4a9c166fcf51bca7d56970 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 7f71fff..92aaf05 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.1.0 + 2.1.1 CFBundleSignature ???? CFBundleVersion diff --git a/GradientLoadingBar.podspec b/GradientLoadingBar.podspec index 724a1de..3eead12 100644 --- a/GradientLoadingBar.podspec +++ b/GradientLoadingBar.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'GradientLoadingBar' - s.version = '2.1.0' + s.version = '2.1.1' s.summary = 'A customizable animated gradient loading bar.' # This description is used to generate tags and improve search results.