Skip to content

Commit 89e3a6a

Browse files
Bump version to 2.1.0. Fix some warning generated by Xcode 8.3.2. Run pod update for example app
1 parent bb21634 commit 89e3a6a

File tree

15 files changed

+122
-97
lines changed

15 files changed

+122
-97
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [2.1.0](https://github.com/LaurentiuUngur/LUExpandableTableView/releases/tag/2.1.0)
4+
5+
- Add ability to expand or collapse sections programatically
6+
37
## [2.0.0](https://github.com/LaurentiuUngur/LUExpandableTableView/releases/tag/2.0.0)
48

59
- Add Swift Package Manager support

LUExpandableTableView.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Pod::Spec.new do |s|
22
s.name = "LUExpandableTableView"
3-
s.version = "2.0.0"
4-
s.summary = "A subclass of `UITableView` with expandable and collapsible sections"
5-
s.description = "A subclass of `UITableView` with expandable and collapsible sections that is easy to use and highly customisable"
3+
s.version = "2.1.0"
4+
s.summary = "A subclass of UITableView with expandable and collapsible sections"
5+
s.description = "A subclass of UITableView with expandable and collapsible sections that is easy to use and highly customisable"
66

77
s.homepage = "https://github.com/LaurentiuUngur/LUExpandableTableView"
88
s.license = { :type => "MIT", :file => "LICENSE" }

LUExpandableTableView.xcodeproj/project.pbxproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
CF94D6111E96889E0097D1D6 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = CF94D60B1E96889E0097D1D6 /* Info.plist */; };
1110
CF94D6121E96889E0097D1D6 /* LUExpandableTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = CF94D60C1E96889E0097D1D6 /* LUExpandableTableView.h */; settings = {ATTRIBUTES = (Public, ); }; };
1211
CF94D6131E96889E0097D1D6 /* LUExpandableTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF94D60D1E96889E0097D1D6 /* LUExpandableTableView.swift */; };
1312
CF94D6141E96889E0097D1D6 /* LUExpandableTableViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF94D60E1E96889E0097D1D6 /* LUExpandableTableViewDataSource.swift */; };
@@ -103,7 +102,7 @@
103102
CFE703251DE0D95E00042757 /* Project object */ = {
104103
isa = PBXProject;
105104
attributes = {
106-
LastUpgradeCheck = 0810;
105+
LastUpgradeCheck = 0830;
107106
ORGANIZATIONNAME = "Laurentiu Ungur";
108107
TargetAttributes = {
109108
CFE7032D1DE0D95E00042757 = {
@@ -135,7 +134,6 @@
135134
isa = PBXResourcesBuildPhase;
136135
buildActionMask = 2147483647;
137136
files = (
138-
CF94D6111E96889E0097D1D6 /* Info.plist in Resources */,
139137
);
140138
runOnlyForDeploymentPostprocessing = 0;
141139
};

LUExpandableTableView.xcodeproj/xcshareddata/xcschemes/LUExpandableTableView.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0810"
3+
LastUpgradeVersion = "0830"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

LUExpandableTableViewExample/LUExpandableTableViewExample.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
);
197197
runOnlyForDeploymentPostprocessing = 0;
198198
shellPath = /bin/sh;
199-
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
199+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
200200
showEnvVarsInLog = 0;
201201
};
202202
CA890B4AFB267BD2B3D8BF7A /* [CP] Copy Pods Resources */ = {

LUExpandableTableViewExample/LUExpandableTableViewExample.xcodeproj/xcshareddata/xcschemes/LUExpandableTableViewExample.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0810"
3+
LastUpgradeVersion = "0830"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- LUExpandableTableView (2.0.0)
2+
- LUExpandableTableView (2.1.0)
33

44
DEPENDENCIES:
55
- LUExpandableTableView (from `../`)
@@ -9,8 +9,8 @@ EXTERNAL SOURCES:
99
:path: ../
1010

1111
SPEC CHECKSUMS:
12-
LUExpandableTableView: 8cf4a4c2e3cab08086e4ee17f818984ac6f73fc0
12+
LUExpandableTableView: 1290f8c262ed15164f2bb46a0f4c273adcefbe06
1313

1414
PODFILE CHECKSUM: 7b9b873a4def1054d78977e70e9c85f023d92970
1515

16-
COCOAPODS: 1.2.0
16+
COCOAPODS: 1.2.1

LUExpandableTableViewExample/Pods/Local Podspecs/LUExpandableTableView.podspec.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LUExpandableTableViewExample/Pods/Manifest.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)