Skip to content

Commit

Permalink
Bump version to 0.2.0. Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentey committed Sep 7, 2017
1 parent a1283db commit cc6154c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "attaswift/BTree" "5.x"
github "attaswift/SipHash" "swift4"
github "attaswift/BTree" ~> 4.1
github "attaswift/SipHash" ~> 1.2
4 changes: 2 additions & 2 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "attaswift/BTree" "ecfcff6f7e633bf238e105ea44fbb9db62f91293"
github "attaswift/SipHash" "a545f26fd119a90a3241cd72914f80fd2c2b8f48"
github "attaswift/BTree" "v4.1.0"
github "attaswift/SipHash" "v1.2.0"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/BTree
2 changes: 1 addition & 1 deletion Carthage/Checkouts/SipHash
8 changes: 4 additions & 4 deletions GlueKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'GlueKit'
spec.version = '0.1.0-alpha.1'
spec.version = '0.2.0'
spec.ios.deployment_target = "9.3"
spec.osx.deployment_target = "10.11"
spec.tvos.deployment_target = "10.0"
Expand All @@ -9,10 +9,10 @@ Pod::Spec.new do |spec|
spec.author = 'Károly Lőrentey'
spec.homepage = 'https://github.com/attaswift/GlueKit'
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.source = { :git => 'https://github.com/attaswift/GlueKit.git', :tag => 'v0.1.0-alpha.1' }
spec.source = { :git => 'https://github.com/attaswift/GlueKit.git', :tag => 'v' + String(spec.version) }
spec.source_files = 'Sources/*.swift'
spec.social_media_url = 'https://twitter.com/lorentey'
#spec.documentation_url = 'http://lorentey.github.io/GlueKit/'
spec.dependency 'BTree', '~> 4.0'
spec.dependency 'SipHash', '~> 1.0'
spec.dependency 'BTree', '~> 4.1'
spec.dependency 'SipHash', '~> 1.2'
end
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ let package = Package(
.library(name: "GlueKit", type: .dynamic, targets: ["GlueKit"])
],
dependencies: [
.package(url: "https://github.com/attaswift/SipHash", .branch("swift4")),
.package(url: "https://github.com/attaswift/BTree", .branch("5.x"))
.package(url: "https://github.com/attaswift/SipHash", .from("1.2")),
.package(url: "https://github.com/attaswift/BTree", .from("4.1"))
],
targets: [
.target(name: "GlueKit", dependencies: ["BTree", "SipHash"], path: "Sources"),
Expand Down
6 changes: 3 additions & 3 deletions version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
//

// Increment the build number whenever you modify the version string.
VERSION_STRING = 0.1.0-alpha.1
BUILD_NUMBER = 1
VERSION_STRING = 0.2.0
BUILD_NUMBER = 2

PROJECT_NAME = GlueKit
BUNDLE_IDENTIFIER_BASE = hu.lorentey.$(PROJECT_NAME)
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)

IPHONEOS_DEPLOYMENT_TARGET = 9.3
MACOSX_DEPLOYMENT_TARGET = 10.11
Expand Down

0 comments on commit cc6154c

Please sign in to comment.