From eef09bdb28ab3d25d7f8ed67c86995b02d7d5da5 Mon Sep 17 00:00:00 2001 From: Sergey Abramchuk Date: Wed, 11 Mar 2020 13:16:15 +0300 Subject: [PATCH 1/2] Bump version number --- OpenVPNAdapter.podspec | 2 +- OpenVPNAdapter.xcodeproj/project.pbxproj | 4 ++-- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/OpenVPNAdapter.podspec b/OpenVPNAdapter.podspec index a910253..6ddb8ca 100644 --- a/OpenVPNAdapter.podspec +++ b/OpenVPNAdapter.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = "OpenVPNAdapter" - s.version = "0.4.0" + s.version = "0.5.0" s.summary = "Objective-C wrapper for OpenVPN library. Compatible with iOS and macOS." s.description = <<-DESC OpenVPNAdapter is an Objective-C framework that allows to easily configure and establish VPN connection using OpenVPN protocol. diff --git a/OpenVPNAdapter.xcodeproj/project.pbxproj b/OpenVPNAdapter.xcodeproj/project.pbxproj index 5e1af9e..6cee466 100644 --- a/OpenVPNAdapter.xcodeproj/project.pbxproj +++ b/OpenVPNAdapter.xcodeproj/project.pbxproj @@ -1521,7 +1521,7 @@ "$(inherited)", "$(TOOLCHAIN_DIR)/usr/lib/swift/macosx", ); - MARKETING_VERSION = 0.4.0; + MARKETING_VERSION = 0.5.0; OTHER_SWIFT_FLAGS = "$(inherited)"; PRODUCT_BUNDLE_IDENTIFIER = OpenVPNAdapter; PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; @@ -1549,7 +1549,7 @@ "$(inherited)", "$(TOOLCHAIN_DIR)/usr/lib/swift/macosx", ); - MARKETING_VERSION = 0.4.0; + MARKETING_VERSION = 0.5.0; OTHER_SWIFT_FLAGS = "$(inherited)"; PRODUCT_BUNDLE_IDENTIFIER = OpenVPNAdapter; PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; diff --git a/README.md b/README.md index b211431..8132597 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To install OpenVPNAdapter with Cocoapods, add the following lines to your `Podfi ```ruby target 'Your Target Name' do use_frameworks! - pod 'OpenVPNAdapter', :git => 'https://github.com/ss-abramchuk/OpenVPNAdapter.git', :tag => '0.4.0' + pod 'OpenVPNAdapter', :git => 'https://github.com/ss-abramchuk/OpenVPNAdapter.git', :tag => '0.5.0' end ``` From e6d64ab9812d6e8f10ccba3f67c053620a66e43c Mon Sep 17 00:00:00 2001 From: Sergey Abramchuk Date: Wed, 11 Mar 2020 13:27:45 +0300 Subject: [PATCH 2/2] Add changelog file --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3a8811d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# Changelog + +## 0.5.0 +- **Added**: Swift Package Manager support; +- **Updated**: openvpn3 library – 3.5.4 version; +- **Fixed**: Network issue when adapter used in macOS projects.