Skip to content

Commit

Permalink
Bumped to v7.0.0 to avoid breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rwbutler committed May 14, 2024
1 parent 518ae46 commit ac5a98a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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).

## [6.2.0] - 2024-05-14
## [7.0.0] - 2024-05-14
### Added
- Added Privacy Manifest to Swift package.
### Changed
Expand Down
2 changes: 1 addition & 1 deletion Connectivity.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Connectivity'
s.version = '6.2.0'
s.version = '7.0.0'
s.swift_version = '5.0'
s.summary = 'Makes Internet connectivity detection more robust by detecting Wi-Fi networks without Internet access.'
s.description = <<-DESC
Expand Down
10 changes: 5 additions & 5 deletions Example/Connectivity.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 53;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -720,7 +720,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 6.1.1;
MARKETING_VERSION = 7.0.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -771,7 +771,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 6.1.1;
MARKETING_VERSION = 7.0.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
Expand All @@ -793,7 +793,7 @@
"@executable_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 6.1.1;
MARKETING_VERSION = 7.0.0;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.Connectivity-Example";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -816,7 +816,7 @@
"@executable_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 6.1.1;
MARKETING_VERSION = 7.0.0;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.Connectivity-Example";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down

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

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

6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Connectivity's objective is to solve the captive portal problem whereby an iOS d
To learn more about how to use Connectivity, take a look at the [keynote presentation](https://github.com/rwbutler/Connectivity/blob/main/docs/presentations/connectivity.pdf), check out the [blog post](https://medium.com/@rwbutler/solving-the-captive-portal-problem-on-ios-9a53ba2b381e), or make use of the table of contents below:

- [Features](#features)
- [What's New in Connectivity 6.0.0?](#whats-new-in-connectivity-530)
- [Hyperconnectivity](#hyperconnectivity)
- [Installation](#installation)
- [Cocoapods](#cocoapods)
Expand Down Expand Up @@ -53,10 +52,7 @@ To learn more about how to use Connectivity, take a look at the [keynote present
- [x] Polling connectivity checks may be performed where a constant network connection is required (optional).
- [x] Combine support via [`Connectivity.Publisher`](https://github.com/rwbutler/Connectivity/blob/main/Connectivity/Classes/Combine/ConnectivityPublisher.swift).

## What's new in Connectivity 6.0.0?

- Added ability to set the authorization header used when contacting an endpoint (thanks to [Nils Bergmann](https://github.com/TheNoim) - see [https://github.com/rwbutler/Connectivity/pull/73](https://github.com/rwbutler/Connectivity/pull/73)).
- iOS base deployment target updated to iOS 11.0.
## What's new in Connectivity 7.0.0?

For more information, see [CHANGELOG.md](CHANGELOG.md).

Expand Down

0 comments on commit ac5a98a

Please sign in to comment.