From 95317c133916ccc9df2a4fd691b70985b413da29 Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 29 Mar 2024 20:36:05 +0800 Subject: [PATCH] feat: Bump version to 0.7.0 --- BlankSlate.podspec | 2 +- Podfile.lock | 4 ++-- Pods/Local Podspecs/BlankSlate.podspec.json | 6 +++--- Pods/Manifest.lock | 4 ++-- .../BlankSlate-iOS/BlankSlate-iOS-Info.plist | 2 +- .../BlankSlate-tvOS/BlankSlate-tvOS-Info.plist | 2 +- README.md | 8 ++++---- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/BlankSlate.podspec b/BlankSlate.podspec index 020a813..248063c 100644 --- a/BlankSlate.podspec +++ b/BlankSlate.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BlankSlate' - s.version = '0.6.5' + s.version = '0.7.0' s.summary = 'A drop-in UIView extension for showing empty datasets whenever the view has no content to display.' s.description = <<-DESC diff --git a/Podfile.lock b/Podfile.lock index 4a4f66e..8987b14 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - BlankSlate (0.6.5) + - BlankSlate (0.7.0) DEPENDENCIES: - BlankSlate (from `./`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "./" SPEC CHECKSUMS: - BlankSlate: e8870919b21ab092adcf570cb552ee9e7a1835df + BlankSlate: faf8c598c13ef15d5c9ae309f2ecec5d9c9219a7 PODFILE CHECKSUM: 1ba5dbdee9e2cd771689764549157cb618df3f82 diff --git a/Pods/Local Podspecs/BlankSlate.podspec.json b/Pods/Local Podspecs/BlankSlate.podspec.json index 7b99312..e7c894e 100644 --- a/Pods/Local Podspecs/BlankSlate.podspec.json +++ b/Pods/Local Podspecs/BlankSlate.podspec.json @@ -1,8 +1,8 @@ { "name": "BlankSlate", - "version": "0.6.5", + "version": "0.7.0", "summary": "A drop-in UIView extension for showing empty datasets whenever the view has no content to display.", - "description": "It will work automatically, by just conforming to BlankSlateDataSource, and returning the data you want to show. The reloadData() call will be observed so the empty dataset will be configured whenever needed.", + "description": "It will work automatically, by just conforming to BlankSlate.DataSource, and returning the data you want to show. The reloadData() call will be observed so the empty dataset will be configured whenever needed.", "homepage": "https://github.com/liam-i/BlankSlate", "license": { "type": "MIT", @@ -13,7 +13,7 @@ }, "source": { "git": "https://github.com/liam-i/BlankSlate.git", - "tag": "0.6.5" + "tag": "0.7.0" }, "platforms": { "ios": "12.0", diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 4a4f66e..8987b14 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -1,5 +1,5 @@ PODS: - - BlankSlate (0.6.5) + - BlankSlate (0.7.0) DEPENDENCIES: - BlankSlate (from `./`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "./" SPEC CHECKSUMS: - BlankSlate: e8870919b21ab092adcf570cb552ee9e7a1835df + BlankSlate: faf8c598c13ef15d5c9ae309f2ecec5d9c9219a7 PODFILE CHECKSUM: 1ba5dbdee9e2cd771689764549157cb618df3f82 diff --git a/Pods/Target Support Files/BlankSlate-iOS/BlankSlate-iOS-Info.plist b/Pods/Target Support Files/BlankSlate-iOS/BlankSlate-iOS-Info.plist index 884814f..4e79a34 100644 --- a/Pods/Target Support Files/BlankSlate-iOS/BlankSlate-iOS-Info.plist +++ b/Pods/Target Support Files/BlankSlate-iOS/BlankSlate-iOS-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.6.5 + 0.7.0 CFBundleSignature ???? CFBundleVersion diff --git a/Pods/Target Support Files/BlankSlate-tvOS/BlankSlate-tvOS-Info.plist b/Pods/Target Support Files/BlankSlate-tvOS/BlankSlate-tvOS-Info.plist index 884814f..4e79a34 100644 --- a/Pods/Target Support Files/BlankSlate-tvOS/BlankSlate-tvOS-Info.plist +++ b/Pods/Target Support Files/BlankSlate-tvOS/BlankSlate-tvOS-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.6.5 + 0.7.0 CFBundleSignature ???? CFBundleVersion diff --git a/README.md b/README.md index d70b0bb..16b7c50 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ BlankSlate is a drop-in UIView extension for showing empty datasets whenever the If you are using the [Swift Package Manager](https://www.swift.org/documentation/package-manager), add a dependency to your `Package.swift` file and import the BlankSlate library into the desired targets: ```swift dependencies: [ - .package(url: "https://github.com/liam-i/BlankSlate.git", from: "0.6.5") + .package(url: "https://github.com/liam-i/BlankSlate.git", from: "0.7.0") ], targets: [ .target( @@ -51,7 +51,7 @@ If you are using Xcode, then you should: - File > Swift Packages > Add Package Dependency - Add `https://github.com/liam-i/BlankSlate.git` -- Select "Up to Next Minor" with "0.6.5" +- Select "Up to Next Minor" with "0.7.0" > [!TIP] > For detailed tutorials, see: [Apple Docs](https://developer.apple.com/documentation/xcode/adding-package-dependencies-to-your-app) @@ -68,7 +68,7 @@ platform :ios, '12.0' use_frameworks! target 'MyApp' do - pod 'BlankSlate', '~> 0.6.5' + pod 'BlankSlate', '~> 0.7.0' end ``` @@ -82,7 +82,7 @@ And run `pod install`. If you're using [Carthage](https://github.com/Carthage/Carthage), add this to your `Cartfile`: ```ruby -github "liam-i/BlankSlate" ~> 0.6.5 +github "liam-i/BlankSlate" ~> 0.7.0 ``` And run `carthage update --platform iOS --use-xcframeworks`.