Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
username0x0a committed Jun 30, 2021
1 parent 6b87f18 commit 1131317
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.3
// swift-tools-version:5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -9,7 +9,7 @@ let package = Package(
.macOS(.v10_10),
.iOS(.v9),
.tvOS(.v9),
.watchOS(.v3)
.watchOS(.v3),
],
products: [
.library(name: "TravelKit",
Expand All @@ -20,7 +20,7 @@ let package = Package(
type: .static, targets: ["TravelKit"]),
],
dependencies: [
.package(name: "FMDB", url: "https://github.com/ccgus/fmdb", from: "2.7.7")
.package(name: "FMDB", url: "https://github.com/ccgus/fmdb", from: "2.7.7"),
],
targets: [
.target(
Expand All @@ -30,14 +30,14 @@ let package = Package(
exclude: [
"Info.plist",
"Config.xcconfig",
"TravelKit-Prefix.pch"
"TravelKit-Prefix.pch",
],
publicHeadersPath: "PublicHeaders",
cSettings: [
.headerSearchPath("PublicHeaders"),
.define("USE_NSOBJECT_PARSING", to: "1"),
.define("USE_TRAVELKIT_FOUNDATION", to: "1"),
.define("USE_TRAVELKIT_AS_SPM_PACKAGE", to: "1")
.define("USE_TRAVELKIT_AS_SPM_PACKAGE", to: "1"),
]
),
]
Expand Down
4 changes: 2 additions & 2 deletions TravelKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
Pod::Spec.new do |spec|

spec.name = 'TravelKit'
spec.version = '3.1.2'
spec.version = '3.2.0'
spec.license = 'MIT'
spec.homepage = 'https://github.com/sygic-travel/apple-sdk'
spec.authors = 'Tripomatic s.r.o.', 'Michal Zelinka'
spec.summary = 'Travel SDK for travelling projects'
spec.source = { :http => 'https://github.com/sygic-travel/apple-sdk/releases/download/v3.1.2/TravelKit-3.1.2-iOS.zip' }
spec.source = { :http => 'https://github.com/sygic-travel/apple-sdk/releases/download/v3.2.0/TravelKit-3.2.0-iOS.zip' }
spec.documentation_url = 'http://docs.sygictravelapi.com/apple-sdk/latest'
spec.module_name = 'TravelKit'

Expand Down
4 changes: 2 additions & 2 deletions TravelKit/Config.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

TK_BUNDLE_VERSION = 3.1.2
TK_BUNDLE_BUILD = 307
TK_BUNDLE_VERSION = 3.2.0
TK_BUNDLE_BUILD = 312
4 changes: 2 additions & 2 deletions TravelKit/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef Version_h
#define Version_h

#define TRAVELKIT_VERSION "3.1.2"
#define TRAVELKIT_BUILD 307
#define TRAVELKIT_VERSION "3.2.0"
#define TRAVELKIT_BUILD 312

#endif /* Version_h */

0 comments on commit 1131317

Please sign in to comment.