Skip to content

Commit 048a1d3

Browse files
bump version to 0.8.0
1 parent 6a1950a commit 048a1d3

File tree

4 files changed

+27
-11
lines changed

4 files changed

+27
-11
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@ Bugfixes:
88
Other:
99
-->
1010

11+
## 0.8.0
12+
13+
API Changes:
14+
15+
- Replace namedRows/namedColumns and enumeratedRows/enumeratedColumns with CSV<Named> and CSV<Enumerated> types
16+
that both expose a rows/columns property with different types. This way you cannot screw up by trying to access
17+
an unpopulated array because the CSV was loaded wrongly. The type knows it all. (#76) -- @DivineDominion
18+
- CSV.namedRows/CSV.namedColumns and CSV.enumeratedRows/CSV.enumeratedColumns are removed.
19+
- NamedCSV/EnumeratedCSV type aliases are introduced to simplify access.
20+
21+
## 0.7.0
22+
23+
API Changes:
24+
25+
- Introduce delimiter guessing (#100) - @DivineDominion
26+
27+
1128
## 0.6.1
1229

1330
Bugfixes:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# SwiftCSV
22

3-
![Swift 5.5](https://img.shields.io/badge/Swift-5.5-blue.svg?style=flat)
43
[![Platform support](https://img.shields.io/badge/platform-ios%20%7C%20osx%20%7C%20tvos%20%7C%20watchos-lightgrey.svg?style=flat-square)](https://github.com/swiftcsv/SwiftCSV/blob/master/LICENSE.md)
54
[![Build Status](https://img.shields.io/travis/swiftcsv/SwiftCSV/master.svg?style=flat-square)](https://travis-ci.org/swiftcsv/SwiftCSV)
65
[![Code coverage status](https://codecov.io/gh/swiftcsv/SwiftCSV/branch/master/graph/badge.svg)](https://codecov.io/gh/swiftcsv/SwiftCSV)

SwiftCSV.podspec

Lines changed: 2 additions & 2 deletions
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.6.1"
3+
s.version = "0.8.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.5", "5.4", "5.3", "5.2", "5.1", "5.0", "4.2" ]
12+
s.swift_versions = [ "5.6", "5.5", "5.4", "5.3", "5.2", "5.1", "5.0", "4.2" ]
1313

1414
s.ios.deployment_target = "9.0"
1515
s.osx.deployment_target = "10.9"

SwiftCSV.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@
840840
INFOPLIST_FILE = "SwiftCSV.xcodeproj/SwiftCSV-Info.plist";
841841
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
842842
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
843-
MARKETING_VERSION = 0.6.1;
843+
MARKETING_VERSION = 0.8.0;
844844
PRODUCT_BUNDLE_IDENTIFIER = "naoty.${PRODUCT_NAME:rfc1034identifier}";
845845
PRODUCT_NAME = "$(TARGET_NAME)";
846846
SKIP_INSTALL = YES;
@@ -861,7 +861,7 @@
861861
INFOPLIST_FILE = "SwiftCSV.xcodeproj/SwiftCSV-Info.plist";
862862
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
863863
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
864-
MARKETING_VERSION = 0.6.1;
864+
MARKETING_VERSION = 0.8.0;
865865
PRODUCT_BUNDLE_IDENTIFIER = "naoty.${PRODUCT_NAME:rfc1034identifier}";
866866
PRODUCT_NAME = "$(TARGET_NAME)";
867867
SKIP_INSTALL = YES;
@@ -923,7 +923,7 @@
923923
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
924924
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
925925
MACOSX_DEPLOYMENT_TARGET = 10.10;
926-
MARKETING_VERSION = 0.6.1;
926+
MARKETING_VERSION = 0.8.0;
927927
MTL_ENABLE_DEBUG_INFO = YES;
928928
PRODUCT_BUNDLE_IDENTIFIER = "naoty.SwiftCSV.SwiftCSV-OSX";
929929
PRODUCT_NAME = SwiftCSV;
@@ -951,7 +951,7 @@
951951
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
952952
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
953953
MACOSX_DEPLOYMENT_TARGET = 10.10;
954-
MARKETING_VERSION = 0.6.1;
954+
MARKETING_VERSION = 0.8.0;
955955
MTL_ENABLE_DEBUG_INFO = NO;
956956
PRODUCT_BUNDLE_IDENTIFIER = "naoty.SwiftCSV.SwiftCSV-OSX";
957957
PRODUCT_NAME = SwiftCSV;
@@ -1014,7 +1014,7 @@
10141014
INFOPLIST_FILE = "SwiftCSV.xcodeproj/SwiftCSV-Info.plist";
10151015
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
10161016
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1017-
MARKETING_VERSION = 0.6.1;
1017+
MARKETING_VERSION = 0.8.0;
10181018
MTL_ENABLE_DEBUG_INFO = YES;
10191019
PRODUCT_BUNDLE_IDENTIFIER = "naoty.SwiftCSV.SwiftCSV-tvOS";
10201020
PRODUCT_NAME = SwiftCSV;
@@ -1041,7 +1041,7 @@
10411041
INFOPLIST_FILE = "SwiftCSV.xcodeproj/SwiftCSV-Info.plist";
10421042
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
10431043
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1044-
MARKETING_VERSION = 0.6.1;
1044+
MARKETING_VERSION = 0.8.0;
10451045
MTL_ENABLE_DEBUG_INFO = NO;
10461046
PRODUCT_BUNDLE_IDENTIFIER = "naoty.SwiftCSV.SwiftCSV-tvOS";
10471047
PRODUCT_NAME = SwiftCSV;
@@ -1105,7 +1105,7 @@
11051105
INFOPLIST_FILE = "SwiftCSV.xcodeproj/SwiftCSV-Info.plist";
11061106
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
11071107
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1108-
MARKETING_VERSION = 0.6.1;
1108+
MARKETING_VERSION = 0.8.0;
11091109
MTL_ENABLE_DEBUG_INFO = YES;
11101110
PRODUCT_BUNDLE_IDENTIFIER = "naoty.SwiftCSV.SwiftCSV-watchOS";
11111111
PRODUCT_NAME = SwiftCSV;
@@ -1133,7 +1133,7 @@
11331133
INFOPLIST_FILE = "SwiftCSV.xcodeproj/SwiftCSV-Info.plist";
11341134
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
11351135
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1136-
MARKETING_VERSION = 0.6.1;
1136+
MARKETING_VERSION = 0.8.0;
11371137
MTL_ENABLE_DEBUG_INFO = NO;
11381138
PRODUCT_BUNDLE_IDENTIFIER = "naoty.SwiftCSV.SwiftCSV-watchOS";
11391139
PRODUCT_NAME = SwiftCSV;

0 commit comments

Comments
 (0)