From 6ab5d0fe9b6ef3c79d717eefa70862df389e74d9 Mon Sep 17 00:00:00 2001 From: Christian Tietze Date: Sat, 11 May 2024 09:18:31 +0200 Subject: [PATCH] bump version to 0.10.0 --- CHANGELOG.md | 2 +- Configuration/Project.xcconfig | 1 + SwiftCSV.podspec | 4 ++-- SwiftCSV.xcodeproj/project.pbxproj | 6 ++++-- 4 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 Configuration/Project.xcconfig diff --git a/CHANGELOG.md b/CHANGELOG.md index 20312c1..d15d2df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Bugfixes: Other: --> -## Upcoming +## 0.10.0 Other: diff --git a/Configuration/Project.xcconfig b/Configuration/Project.xcconfig new file mode 100644 index 0000000..570a78a --- /dev/null +++ b/Configuration/Project.xcconfig @@ -0,0 +1 @@ +MARKETING_VERSION=0.10.0 diff --git a/SwiftCSV.podspec b/SwiftCSV.podspec index dc2473e..0874fa9 100644 --- a/SwiftCSV.podspec +++ b/SwiftCSV.podspec @@ -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" } @@ -9,7 +9,7 @@ Pod::Spec.new do |s| "Christian Tietze" => "me@christiantietze.de" } 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" diff --git a/SwiftCSV.xcodeproj/project.pbxproj b/SwiftCSV.xcodeproj/project.pbxproj index 269b322..ac4cb92 100644 --- a/SwiftCSV.xcodeproj/project.pbxproj +++ b/SwiftCSV.xcodeproj/project.pbxproj @@ -142,6 +142,7 @@ 502CDAF32AC60ADA00766701 /* ResourceHelper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResourceHelper.swift; sourceTree = ""; }; 5034F4712272E0DC001C02D1 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 5034F4722272E0E4001C02D1 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + 504F73F02BEF52AA00FF4102 /* Project.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Project.xcconfig; path = Configuration/Project.xcconfig; sourceTree = ""; }; 508975D11DBB897A006F3DBE /* NamedCSVView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NamedCSVView.swift; sourceTree = ""; }; 508975D61DBF34CF006F3DBE /* ParsingState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParsingState.swift; sourceTree = ""; }; 508975DB1DBF3B70006F3DBE /* EnumeratedCSVView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnumeratedCSVView.swift; sourceTree = ""; }; @@ -236,6 +237,7 @@ 50F241A4274BB8DB00520A69 /* CHANGELOG.md */, 50F241A6274BBDF000520A69 /* Package.swift */, 50F241A5274BBDF000520A69 /* SwiftCSV.podspec */, + 504F73F02BEF52AA00FF4102 /* Project.xcconfig */, 3D1E59B61945FFAC001CF760 /* SwiftCSV */, 3D1E59C31945FFAD001CF760 /* SwiftCSVTests */, 3D1E59B51945FFAC001CF760 /* Products */, @@ -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; @@ -821,6 +824,7 @@ }; 3D1E59C91945FFAD001CF760 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 504F73F02BEF52AA00FF4102 /* Project.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; @@ -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; @@ -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;