Skip to content

Commit 501c6bd

Browse files
authored
Merge pull request #61 from pusher/update-podspec
Add tvos support back to podspec
2 parents 9d24ae0 + 3005c59 commit 501c6bd

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased](https://github.com/pusher/NWWebSocket/compare/0.5.8...HEAD)
7+
## [Unreleased](https://github.com/pusher/NWWebSocket/compare/0.5.9...HEAD)
8+
9+
## [0.5.9](https://github.com/pusher/NWWebSocket/compare/0.5.8...0.5.9) - 2025-12-05
10+
11+
### Fixed
12+
13+
- Add tvos support back to the podspec [#61]
814

915
## [0.5.8](https://github.com/pusher/NWWebSocket/compare/0.5.7...0.5.8) - 2025-12-05
1016

NWWebSocket.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'NWWebSocket'
3-
s.version = '0.5.8'
3+
s.version = '0.5.9'
44
s.summary = 'A WebSocket client written in Swift, using the Network framework from Apple'
55
s.homepage = 'https://github.com/pusher/NWWebSocket'
66
s.license = 'MIT'
@@ -14,4 +14,5 @@ Pod::Spec.new do |s|
1414

1515
s.ios.deployment_target = '13.0'
1616
s.osx.deployment_target = '10.15'
17+
s.tvos.deployment_target = '13.0'
1718
end

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ source 'https://github.com/CocoaPods/Specs.git'
4848
platform :ios, '14.0'
4949
use_frameworks!
5050

51-
pod 'NWWebSocket', '~> 0.5.8'
51+
pod 'NWWebSocket', '~> 0.5.9'
5252
```
5353

5454
Then, run the following command:
@@ -90,7 +90,7 @@ let package = Package(
9090
],
9191
dependencies: [
9292
.package(url: "https://github.com/pusher/NWWebSocket.git",
93-
.upToNextMajor(from: "0.5.8")),
93+
.upToNextMajor(from: "0.5.9")),
9494
],
9595
targets: [
9696
.target(

0 commit comments

Comments
 (0)