Skip to content

Commit cc6154c

Browse files
committed
Bump version to 0.2.0. Update dependencies.
1 parent a1283db commit cc6154c

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Cartfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "attaswift/BTree" "5.x"
2-
github "attaswift/SipHash" "swift4"
1+
github "attaswift/BTree" ~> 4.1
2+
github "attaswift/SipHash" ~> 1.2

Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "attaswift/BTree" "ecfcff6f7e633bf238e105ea44fbb9db62f91293"
2-
github "attaswift/SipHash" "a545f26fd119a90a3241cd72914f80fd2c2b8f48"
1+
github "attaswift/BTree" "v4.1.0"
2+
github "attaswift/SipHash" "v1.2.0"

GlueKit.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'GlueKit'
3-
spec.version = '0.1.0-alpha.1'
3+
spec.version = '0.2.0'
44
spec.ios.deployment_target = "9.3"
55
spec.osx.deployment_target = "10.11"
66
spec.tvos.deployment_target = "10.0"
@@ -9,10 +9,10 @@ Pod::Spec.new do |spec|
99
spec.author = 'Károly Lőrentey'
1010
spec.homepage = 'https://github.com/attaswift/GlueKit'
1111
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
12-
spec.source = { :git => 'https://github.com/attaswift/GlueKit.git', :tag => 'v0.1.0-alpha.1' }
12+
spec.source = { :git => 'https://github.com/attaswift/GlueKit.git', :tag => 'v' + String(spec.version) }
1313
spec.source_files = 'Sources/*.swift'
1414
spec.social_media_url = 'https://twitter.com/lorentey'
1515
#spec.documentation_url = 'http://lorentey.github.io/GlueKit/'
16-
spec.dependency 'BTree', '~> 4.0'
17-
spec.dependency 'SipHash', '~> 1.0'
16+
spec.dependency 'BTree', '~> 4.1'
17+
spec.dependency 'SipHash', '~> 1.2'
1818
end

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ let package = Package(
77
.library(name: "GlueKit", type: .dynamic, targets: ["GlueKit"])
88
],
99
dependencies: [
10-
.package(url: "https://github.com/attaswift/SipHash", .branch("swift4")),
11-
.package(url: "https://github.com/attaswift/BTree", .branch("5.x"))
10+
.package(url: "https://github.com/attaswift/SipHash", .from("1.2")),
11+
.package(url: "https://github.com/attaswift/BTree", .from("4.1"))
1212
],
1313
targets: [
1414
.target(name: "GlueKit", dependencies: ["BTree", "SipHash"], path: "Sources"),

version.xcconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
//
77

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

1212
PROJECT_NAME = GlueKit
13-
BUNDLE_IDENTIFIER_BASE = hu.lorentey.$(PROJECT_NAME)
13+
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)
1414

1515
IPHONEOS_DEPLOYMENT_TARGET = 9.3
1616
MACOSX_DEPLOYMENT_TARGET = 10.11

0 commit comments

Comments
 (0)