Skip to content

Commit

Permalink
feat: Bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
liam-i committed Mar 13, 2024
1 parent 1ea2eee commit 84d9994
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion BlankSlate.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'BlankSlate'
s.version = '0.4.0'
s.version = '0.4.1'
s.summary = 'A drop-in UIView/UIScrollView/UITableView/UICollectionView superclass extension for showing empty datasets whenever the view has no content to display.'

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- BlankSlate (0.4.0)
- BlankSlate (0.4.1)

DEPENDENCIES:
- BlankSlate (from `./`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "./"

SPEC CHECKSUMS:
BlankSlate: 2f02096647740e09bcdb142bd3aa729d87560af5
BlankSlate: e3fe69d483959be46317b7f95b3ac540bb2c228f

PODFILE CHECKSUM: 1ba5dbdee9e2cd771689764549157cb618df3f82

Expand Down
4 changes: 2 additions & 2 deletions Pods/Local Podspecs/BlankSlate.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ BlankSlate is a drop-in UIView/UIScrollView/UITableView/UICollectionView supercl
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.4.0")
.package(url: "https://github.com/liam-i/BlankSlate.git", from: "0.4.1")
],
targets: [
.target(
Expand All @@ -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.4.0"
- Select "Up to Next Minor" with "0.4.1"

> [!TIP]
> For detailed tutorials, see: [Apple Docs](https://developer.apple.com/documentation/xcode/adding-package-dependencies-to-your-app)
Expand All @@ -68,7 +68,7 @@ platform :ios, '12.0'
use_frameworks!

target 'MyApp' do
pod 'BlankSlate', '~> 0.4.0'
pod 'BlankSlate', '~> 0.4.1'
end
```

Expand All @@ -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.4.0
github "liam-i/BlankSlate" ~> 0.4.1
```

And run `carthage update --platform iOS --use-xcframeworks`.
Expand Down

0 comments on commit 84d9994

Please sign in to comment.