Skip to content

Commit

Permalink
Bump HAKit 0.4.2 (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoncal committed Apr 22, 2024
1 parent 139c24d commit c7f34a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.2] - 2024-04-22
- Changed: Avoid JSON cache by JSONSerialization NSString

## [0.4.1] - 2024-04-03
- Added: Typed request to send Assist audio data to Assist pipeline
- Changed: Use of forked StarScream which fixes usage of URLSession
Expand Down
2 changes: 1 addition & 1 deletion HAKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HAKit'
s.version = '0.4.1'
s.version = '0.4.2'
s.summary = 'Communicate with a Home Assistant instance.'
s.author = 'Home Assistant'

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ This library contains optional additions for use with PromiseKit. See the [sourc
To install the library, either add it as a dependency in a `Package.swift` like:

```swift
.package(url: "https://github.com/home-assistant/HAKit", from: Version(0, 4, 1))
.package(url: "https://github.com/home-assistant/HAKit", from: Version(0, 4, 2))
```

To add it to an Xcode project, you can do this by adding the URL to File > Swift Packages > Add Package Dependency. You will find a few targets available:
Expand All @@ -220,7 +220,7 @@ To add it to an Xcode project, you can do this by adding the URL to File > Swift
Add the following line to your Podfile:

```ruby
pod "HAKit", "~> 0.4.1"
pod "HAKit", "~> 0.4.2"
# We are working from a fork of Starscream due to a necessary fix, please specify in your podfile
pod 'Starscream', git: 'https://github.com/bgoncal/starscream', branch: 'ha-URLSession-fix'
# pod "HAKit/PromiseKit" # optional, for PromiseKit support
Expand Down

0 comments on commit c7f34a4

Please sign in to comment.