Skip to content

Commit 6ab5d0f

Browse files
bump version to 0.10.0
1 parent 6aac7c1 commit 6ab5d0f

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Bugfixes:
88
Other:
99
-->
1010

11-
## Upcoming
11+
## 0.10.0
1212

1313
Other:
1414

Configuration/Project.xcconfig

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
MARKETING_VERSION=0.10.0

SwiftCSV.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SwiftCSV"
3-
s.version = "0.9.1"
3+
s.version = "0.10.0"
44
s.summary = "CSV parser for Swift"
55
s.homepage = "https://github.com/swiftcsv/SwiftCSV"
66
s.license = { :type => "MIT", :file => "LICENSE" }
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
"Christian Tietze" => "[email protected]"
1010
}
1111
s.source = { :git => "https://github.com/swiftcsv/SwiftCSV.git", :tag => s.version }
12-
s.swift_versions = [ "5.9", "5.8", "5.7", "5.6", "5.5", "5.4", "5.3", "5.2", "5.1", "5.0", "4.2" ]
12+
s.swift_versions = [ "5.10", "5.9", "5.8", "5.7", "5.6", "5.5", "5.4", "5.3", "5.2", "5.1", "5.0", "4.2" ]
1313

1414
s.ios.deployment_target = "12.0"
1515
s.osx.deployment_target = "10.13"

SwiftCSV.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@
142142
502CDAF32AC60ADA00766701 /* ResourceHelper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResourceHelper.swift; sourceTree = "<group>"; };
143143
5034F4712272E0DC001C02D1 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
144144
5034F4722272E0E4001C02D1 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
145+
504F73F02BEF52AA00FF4102 /* Project.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Project.xcconfig; path = Configuration/Project.xcconfig; sourceTree = "<group>"; };
145146
508975D11DBB897A006F3DBE /* NamedCSVView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NamedCSVView.swift; sourceTree = "<group>"; };
146147
508975D61DBF34CF006F3DBE /* ParsingState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParsingState.swift; sourceTree = "<group>"; };
147148
508975DB1DBF3B70006F3DBE /* EnumeratedCSVView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnumeratedCSVView.swift; sourceTree = "<group>"; };
@@ -236,6 +237,7 @@
236237
50F241A4274BB8DB00520A69 /* CHANGELOG.md */,
237238
50F241A6274BBDF000520A69 /* Package.swift */,
238239
50F241A5274BBDF000520A69 /* SwiftCSV.podspec */,
240+
504F73F02BEF52AA00FF4102 /* Project.xcconfig */,
239241
3D1E59B61945FFAC001CF760 /* SwiftCSV */,
240242
3D1E59C31945FFAD001CF760 /* SwiftCSVTests */,
241243
3D1E59B51945FFAC001CF760 /* Products */,
@@ -761,6 +763,7 @@
761763
/* Begin XCBuildConfiguration section */
762764
3D1E59C81945FFAD001CF760 /* Debug */ = {
763765
isa = XCBuildConfiguration;
766+
baseConfigurationReference = 504F73F02BEF52AA00FF4102 /* Project.xcconfig */;
764767
buildSettings = {
765768
ALWAYS_SEARCH_USER_PATHS = NO;
766769
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
@@ -821,6 +824,7 @@
821824
};
822825
3D1E59C91945FFAD001CF760 /* Release */ = {
823826
isa = XCBuildConfiguration;
827+
baseConfigurationReference = 504F73F02BEF52AA00FF4102 /* Project.xcconfig */;
824828
buildSettings = {
825829
ALWAYS_SEARCH_USER_PATHS = NO;
826830
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
@@ -1263,7 +1267,6 @@
12631267
"@executable_path/Frameworks",
12641268
"@loader_path/Frameworks",
12651269
);
1266-
MARKETING_VERSION = 0.8.0;
12671270
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
12681271
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
12691272
MTL_ENABLE_DEBUG_INFO = YES;
@@ -1301,7 +1304,6 @@
13011304
"@executable_path/Frameworks",
13021305
"@loader_path/Frameworks",
13031306
);
1304-
MARKETING_VERSION = 0.8.0;
13051307
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
13061308
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
13071309
MTL_ENABLE_DEBUG_INFO = NO;

0 commit comments

Comments
 (0)