Skip to content

Commit

Permalink
Merge branch 'tim/ios_fix' into 'master'
Browse files Browse the repository at this point in the history
fix: Make the dev iOS version a valid X-Tanker-Version (9999.0.0)

See merge request TankerHQ/sdk-ios!252
  • Loading branch information
tux3 committed May 29, 2024
2 parents 7897d48 + 19e920c commit 3e29314
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Tanker/Sources/TKRTanker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ private var AssociatedCTankerHandle: UInt8 = 0

@objc(TKRTanker)
public extension Tanker {
static let TANKER_IOS_VERSION = "9999";
static let TANKER_IOS_VERSION = "9999.0.0";

private var cTanker: OpaquePointer? {
get {
Expand Down
2 changes: 1 addition & 1 deletion Tanker/Tanker.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Tanker'
s.version = '9999'
s.version = '9999.0.0'
s.summary = 'End to end encryption'

s.description = <<-DESC
Expand Down
6 changes: 3 additions & 3 deletions tbump.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[version]
current = "9999"
current = "9999.0.0"

regex = '''
(9999)
(dev)
|
(
(?P<major>\d+)
Expand All @@ -28,4 +28,4 @@ search = 's.version'

[[file]]
src = "Tanker/Sources/TKRTanker.swift"
search = 'static let TANKER_IOS_VERSION = @"{current_version}";'
search = 'static let TANKER_IOS_VERSION = "{current_version}";'

0 comments on commit 3e29314

Please sign in to comment.