diff --git a/CHANGELOG.md b/CHANGELOG.md index cf475d7..af1bc80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/HAKit.podspec b/HAKit.podspec index caeb0c5..9328749 100644 --- a/HAKit.podspec +++ b/HAKit.podspec @@ -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' diff --git a/README.md b/README.md index 8738cb6..22451a5 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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