Merge branch 'release-metadata'
This commit is contained in:
commit
860dc7fe84
|
@ -1 +0,0 @@
|
|||
4.2
|
|
@ -2,7 +2,7 @@
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project _will soonly adhere_ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
## 1.1.0 (2018-09-26)
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -26,6 +26,7 @@ and this project _will soonly adhere_ to [Semantic Versioning](https://semver.or
|
|||
- Minor adjustments for Xcode 10 / Swift 4.2.
|
||||
- Deep refactoring of control channel for future extensibility.
|
||||
- App group moved out of tunnel configuration, to make it more platform-agnostic and coherent to serialize.
|
||||
- Keep-alive is disabled by default.
|
||||
- Several internal renamings.
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -57,7 +57,7 @@ pod 'TunnelKit'
|
|||
|
||||
Download the library codebase locally:
|
||||
|
||||
$ git clone https://github.com/keeshux/TunnelKit.git
|
||||
$ git clone https://github.com/keeshux/tunnelkit.git
|
||||
|
||||
Assuming you have a [working CocoaPods environment][dep-cocoapods], setting up the library workspace only requires installing the pod dependencies:
|
||||
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = "TunnelKit"
|
||||
s.version = File.read("ci/VERSION")
|
||||
s.version = "1.1.0"
|
||||
s.summary = "Non-official OpenVPN client for Apple platforms."
|
||||
|
||||
s.homepage = "https://github.com/keeshux/tunnelkit"
|
||||
s.license = { :type => "GPLv3", :file => "LICENSE" }
|
||||
s.author = { "Davide De Rosa" => "keeshux@gmail.com" }
|
||||
s.source = { :git => "https://github.com/keeshux/tunnelkit.git", :tag => "v#{s.version}" }
|
||||
s.swift_version = "4.2"
|
||||
|
||||
s.ios.deployment_target = "11.0"
|
||||
s.osx.deployment_target = "10.11"
|
||||
|
|
|
@ -4,3 +4,6 @@ VERSION=`cat $PWD/VERSION`
|
|||
BUILD=`git rev-list HEAD --count`
|
||||
agvtool new-marketing-version $VERSION
|
||||
agvtool new-version $BUILD
|
||||
|
||||
echo "Setting podspec version to $VERSION..."
|
||||
sed -i "" -E 's@s\.version( +)= "[0-9]+\.[0-9]+\.[0-9]+"$@s.version\1= "'$VERSION'"@g' TunnelKit.podspec
|
||||
|
|
Loading…
Reference in New Issue