Skip to content

Commit

Permalink
Merge pull request #48 from will-lumley/tech/updated-version
Browse files Browse the repository at this point in the history
Update Version
  • Loading branch information
will-lumley authored Feb 6, 2022
2 parents 178829b + 9f7581d commit ddcbaa2
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 45 deletions.

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.

2 changes: 1 addition & 1 deletion FaviconFinder.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Pod::Spec.new do |s|

s.name = "FaviconFinder"
s.version = "3.2.1"
s.version = "3.2.2"
s.summary = "A pure Swift library to detect favicons use by a website."
s.homepage = "https://github.com/will-lumley/FaviconFinder.git"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ FaviconFinder is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:

```ruby
pod 'FaviconFinder', '3.2.1'
pod 'FaviconFinder', '3.2.2'
```

### Carthage
FaviconFinder is also available through [Carthage](https://github.com/Carthage/Carthage). To install
it, simply add the following line to your Cartfile:

```ruby
github "will-lumley/FaviconFinder" == 3.2.1
github "will-lumley/FaviconFinder" == 3.2.2
```

### Swift Package Manager
Expand All @@ -130,7 +130,7 @@ To install it, simply add the dependency to your Package.Swift file:
```swift
...
dependencies: [
.package(url: "https://github.com/will-lumley/FaviconFinder.git", from: "3.2.1"),
.package(url: "https://github.com/will-lumley/FaviconFinder.git", from: "3.2.2"),
],
targets: [
.target( name: "YourTarget", dependencies: ["FaviconFinder"]),
Expand Down
3 changes: 2 additions & 1 deletion Sources/FaviconFinder/Classes/Types/Favicon.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ public struct Favicon {

/// The actual image
public let image: FaviconImage


/// The data that makes up the actual image
public let data: Data

/// The url of the .ico or HTML page, of where the favicon was found
Expand Down

0 comments on commit ddcbaa2

Please sign in to comment.