Skip to content

Commit

Permalink
bump version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DivineDominion committed May 11, 2024
1 parent 6aac7c1 commit 6ab5d0f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Bugfixes:
Other:
-->

## Upcoming
## 0.10.0

Other:

Expand Down
1 change: 1 addition & 0 deletions Configuration/Project.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MARKETING_VERSION=0.10.0
4 changes: 2 additions & 2 deletions SwiftCSV.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftCSV"
s.version = "0.9.1"
s.version = "0.10.0"
s.summary = "CSV parser for Swift"
s.homepage = "https://github.com/swiftcsv/SwiftCSV"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
"Christian Tietze" => "[email protected]"
}
s.source = { :git => "https://github.com/swiftcsv/SwiftCSV.git", :tag => s.version }
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" ]
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" ]

s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
Expand Down
6 changes: 4 additions & 2 deletions SwiftCSV.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
502CDAF32AC60ADA00766701 /* ResourceHelper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResourceHelper.swift; sourceTree = "<group>"; };
5034F4712272E0DC001C02D1 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
5034F4722272E0E4001C02D1 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
504F73F02BEF52AA00FF4102 /* Project.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Project.xcconfig; path = Configuration/Project.xcconfig; sourceTree = "<group>"; };
508975D11DBB897A006F3DBE /* NamedCSVView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NamedCSVView.swift; sourceTree = "<group>"; };
508975D61DBF34CF006F3DBE /* ParsingState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParsingState.swift; sourceTree = "<group>"; };
508975DB1DBF3B70006F3DBE /* EnumeratedCSVView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnumeratedCSVView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -236,6 +237,7 @@
50F241A4274BB8DB00520A69 /* CHANGELOG.md */,
50F241A6274BBDF000520A69 /* Package.swift */,
50F241A5274BBDF000520A69 /* SwiftCSV.podspec */,
504F73F02BEF52AA00FF4102 /* Project.xcconfig */,
3D1E59B61945FFAC001CF760 /* SwiftCSV */,
3D1E59C31945FFAD001CF760 /* SwiftCSVTests */,
3D1E59B51945FFAC001CF760 /* Products */,
Expand Down Expand Up @@ -761,6 +763,7 @@
/* Begin XCBuildConfiguration section */
3D1E59C81945FFAD001CF760 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 504F73F02BEF52AA00FF4102 /* Project.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
Expand Down Expand Up @@ -821,6 +824,7 @@
};
3D1E59C91945FFAD001CF760 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 504F73F02BEF52AA00FF4102 /* Project.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
Expand Down Expand Up @@ -1263,7 +1267,6 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.8.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
MTL_ENABLE_DEBUG_INFO = YES;
Expand Down Expand Up @@ -1301,7 +1304,6 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.8.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
MTL_ENABLE_DEBUG_INFO = NO;
Expand Down

0 comments on commit 6ab5d0f

Please sign in to comment.