Skip to content

Commit

Permalink
Updated CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rwbutler committed Mar 20, 2022
1 parent 36e3182 commit 7043af7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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).

## [1.1.1] - 2022-03-20
### Changed
- Merged [PR #4](https://github.com/rwbutler/Hyperconnectivity/pull/4) to ensure that cached results are never used as part of connectivity checks.
- Adjusted tests to pass both locally as well as on Travis CI.

## [1.1.0] - 2020-08-23
### Added
- Compatibility with macOS, watchOS and tvOS via Swift Package Manager.
Expand Down
2 changes: 2 additions & 0 deletions Example/Hyperconnectivity.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,7 @@
INFOPLIST_FILE = Hyperconnectivity/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.1.1;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.Hyperconnectivity-Example";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -597,6 +598,7 @@
INFOPLIST_FILE = Hyperconnectivity/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.1.1;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.Hyperconnectivity-Example";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion Example/Hyperconnectivity/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Hyperconnectivity.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Hyperconnectivity'
s.version = '1.1.0'
s.version = '1.1.1'
s.swift_version = '5.0'
s.summary = 'Modern replacement for Apple\'s Reachability written in Swift and made elegant using Combine'
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Hyperconnectivity/Classes/Core/Hyperconnectivity.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class Hyperconnectivity {

private extension Hyperconnectivity {
private func checkConnectivity(of path: NWPath, using configuration: Configuration) {
// Ensure that we never use cached results, including with custom `URLSessionConfiguration`s.
// Ensure that we never use cached results, including where using a custom `URLSessionConfiguration`.
let urlSessionConfiguration = configuration.urlSessionConfiguration.copy() as! URLSessionConfiguration
urlSessionConfiguration.requestCachePolicy = .reloadIgnoringCacheData
urlSessionConfiguration.urlCache = nil
Expand Down

0 comments on commit 7043af7

Please sign in to comment.