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

Version 1.4.2 #87

Merged
merged 1 commit into from
Apr 4, 2020
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.4.2] - 2020-04-04

- Added caret semver to `cordova-plugin-add-swift-support` #80
- [iOS] Fixed handling of invalid TXTRecord keyValues that crash #86

## [1.4.1] - 2019-11-07

- [iOS] updating cordova-plugin-add-swift-support dependency to 2.0.2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-zeroconf",
"version": "1.4.1",
"version": "1.4.2",
"description": "Cordova ZeroConf plugin",
"cordova": {
"id": "cordova-plugin-zeroconf",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-zeroconf"
version="1.4.1">
version="1.4.2">

<name>ZeroConf</name>
<description>ZeroConf plugin for Cordova/Phonegap</description>
Expand Down
2 changes: 1 addition & 1 deletion src/ios/ZeroConf.swift
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ import Foundation
case 2:
result[key] = String(keyValue[1])
default:
fatalError()
fatalError("ZeroConf: Malformed or unexpected TXTRecord keyValue")
}
}

Expand Down