Skip to content

Commit ab19b1f

Browse files
authored
Merge pull request #158 from duhnnie/release/1.6.1
Release/1.6.1
2 parents 4a512ed + 799fc1c commit ab19b1f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

LastFM.swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "LastFM.swift"
3-
s.version = "1.6.0"
3+
s.version = "1.6.1"
44
s.summary = "A library for consuming the last.fm API"
55

66
s.description = <<-DESC

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Swift code.
1515

1616
```swift
1717
dependencies: [
18-
.package(url: "https://github.com/duhnnie/LastFM.swift", from: "1.6.0")
18+
.package(url: "https://github.com/duhnnie/LastFM.swift", from: "1.6.1")
1919
]
2020
```
2121

@@ -37,7 +37,7 @@ install LastFM.swift with Carthage:
3737
2. Update your Cartfile to include the following:
3838

3939
```ruby
40-
github "duhnnie/LastFM.swift" ~> 1.6.0
40+
github "duhnnie/LastFM.swift" ~> 1.6.1
4141
```
4242

4343
3. Run `carthage update` and
@@ -67,7 +67,7 @@ LastFM.swift with CocoaPods:
6767
use_frameworks!
6868
6969
target 'YourAppTargetName' do
70-
pod 'LastFM.swift', '~> 1.6.0'
70+
pod 'LastFM.swift', '~> 1.6.1'
7171
end
7272
```
7373

Sources/LastFM/Models/ExtendedRecentTrack.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public struct ExtendedRecentTrack: Codable {
7373
}
7474
}
7575

76-
public func encode(to encoder: any Encoder) throws {
76+
public func encode(to encoder: Encoder) throws {
7777
var container = encoder.container(keyedBy: CodingKeys.self)
7878

7979
try container.encode(name, forKey: .name)

0 commit comments

Comments
 (0)