Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.5.4 #46

Merged
merged 3 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/pusher/NWWebSocket/compare/0.5.2...HEAD)
## [Unreleased](https://github.com/pusher/NWWebSocket/compare/0.5.4...HEAD)

## [0.5.4](https://github.com/pusher/NWWebSocket/compare/0.5.3...0.5.4) - 2023-12-15

### Fixed

- Fix reconnection loop [#44]

## [0.5.3](https://github.com/pusher/NWWebSocket/compare/0.5.2...0.5.3) - 2023-04-04

Expand Down
2 changes: 1 addition & 1 deletion NWWebSocket.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NWWebSocket'
s.version = '0.5.3'
s.version = '0.5.4'
s.summary = 'A WebSocket client written in Swift, using the Network framework from Apple'
s.homepage = 'https://github.com/pusher/NWWebSocket'
s.license = 'MIT'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '14.0'
use_frameworks!

pod 'NWWebSocket', '~> 0.5.3'
pod 'NWWebSocket', '~> 0.5.4'
```

Then, run the following command:
Expand Down Expand Up @@ -90,7 +90,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/pusher/NWWebSocket.git",
.upToNextMajor(from: "0.5.3")),
.upToNextMajor(from: "0.5.4")),
],
targets: [
.target(
Expand Down
Loading