Skip to content

Commit f981827

Browse files
committed
Bump version to 1.0.0
1 parent e816b8f commit f981827

File tree

7 files changed

+29
-10
lines changed

7 files changed

+29
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## v1.0.0
2+
3+
Initial release written in Swift 2.1.
4+
5+
#### Added
6+
7+
* `ICKeyboardDismissTextField` with an accessory view to dismiss keyboard.
8+
* `ICTokenField`, a text field that groups input texts as tokens.

Example/Example.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@
402402
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
403403
GCC_WARN_UNUSED_FUNCTION = YES;
404404
GCC_WARN_UNUSED_VARIABLE = YES;
405-
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
405+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
406406
MTL_ENABLE_DEBUG_INFO = YES;
407407
ONLY_ACTIVE_ARCH = YES;
408408
SDKROOT = iphoneos;
@@ -440,7 +440,7 @@
440440
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
441441
GCC_WARN_UNUSED_FUNCTION = YES;
442442
GCC_WARN_UNUSED_VARIABLE = YES;
443-
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
443+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
444444
MTL_ENABLE_DEBUG_INFO = NO;
445445
SDKROOT = iphoneos;
446446
VALIDATE_PRODUCT = YES;

Example/Example/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.1.0</string>
18+
<string>1.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

ICInputAccessory.podspec

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
Pod::Spec.new do |s|
22
s.name = "ICInputAccessory"
3-
s.version = "0.1.0"
4-
s.summary = "A customized input accessory UI to dismiss keyboard."
3+
s.version = "1.0.0"
4+
s.summary = "Customized text fields used in the iCook app."
5+
s.description = <<-DESC
6+
ICKeyboardDismissTextField:
7+
* An input accessory view with a button to dismiss keyboard.
58
9+
ICTokenField:
10+
* A horizontal scrolling UI that groups input texts.
11+
* Easy to add and delete tokens.
12+
* Customizable icon and colors.
13+
DESC
14+
15+
s.screenshots = "https://raw.githubusercontent.com/polydice/ICInputAccessory/gh-pages/screenshots/ICKeyboardDismissTextField.png",
16+
"https://raw.githubusercontent.com/polydice/ICInputAccessory/gh-pages/screenshots/ICTokenField.png"
617
s.homepage = "https://github.com/polydice/ICInputAccessory"
718
s.license = { type: "MIT", file: "LICENSE" }
819
s.authors = "bcylin", "trisix"

ICInputAccessory.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
218218
GCC_WARN_UNUSED_FUNCTION = YES;
219219
GCC_WARN_UNUSED_VARIABLE = YES;
220-
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
220+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
221221
MTL_ENABLE_DEBUG_INFO = YES;
222222
ONLY_ACTIVE_ARCH = YES;
223223
SDKROOT = iphoneos;
@@ -259,7 +259,7 @@
259259
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
260260
GCC_WARN_UNUSED_FUNCTION = YES;
261261
GCC_WARN_UNUSED_VARIABLE = YES;
262-
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
262+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
263263
MTL_ENABLE_DEBUG_INFO = NO;
264264
SDKROOT = iphoneos;
265265
TARGETED_DEVICE_FAMILY = "1,2";

ICInputAccessory/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.1.0</string>
18+
<string>1.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- ICInputAccessory (0.1.0)
2+
- ICInputAccessory (1.0.0)
33

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

1111
SPEC CHECKSUMS:
12-
ICInputAccessory: 99d2957193e587e3d82c4b3a045c58c3b02c120c
12+
ICInputAccessory: 341225aaa67a035b266880a5795001b363d1b1da
1313

1414
COCOAPODS: 0.39.0

0 commit comments

Comments
 (0)