Skip to content

Commit 2b8e9db

Browse files
BenBen
authored andcommitted
Merge branch 'release/1.2.0' into develop
2 parents d831acd + 4525361 commit 2b8e9db

16 files changed

Lines changed: 78 additions & 28 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ xcuserdata
2222
*.moved-aside
2323
*.xcuserstate
2424
*.xcscmblueprint
25+
docs
2526

2627
## Obj-C/Swift specific
2728
*.hmap

.jazzy.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
clean: true
2+
author: polydice
3+
author_url: https://github.com/polydice
4+
github_url: https://github.com/polydice/ICInputAccessory
5+
github_file_prefix: https://github.com/polydice/ICInputAccessory/blob/develop
6+
xcodebuild_arguments: [-scheme, ICInputAccessory-iOS]
7+
module: ICInputAccessory
8+
module_version: 1.2.0
9+
output: docs/output
10+
theme: fullwidth

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ matrix:
88
script: bundle exec rake ci:build[latest]
99
- env: BUILD=carthage
1010
script: make carthage
11+
after_script:
12+
- make documentation
1113
cache:
1214
bundler: true
1315
directories:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v1.2.0
2+
3+
#### Changes
4+
5+
* Swift 2.3
6+
17
## v1.1.0
28

39
#### Changes

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>1.1.0</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Example/ICInputAccessoryUITests/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>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.1.0</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ source "http://rubygems.org"
22
ruby "2.3.1"
33

44
gem "cocoapods", "~> 1.0.0"
5+
gem "jazzy", "~> 0.7.0"
56
gem "pry"
67
gem "rake"
78
gem "xcpretty"

Gemfile.lock

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: http://rubygems.org/
33
specs:
4-
activesupport (5.0.0)
4+
activesupport (5.0.0.1)
55
concurrent-ruby (~> 1.0, >= 1.0.2)
66
i18n (~> 0.7)
77
minitest (~> 5.1)
@@ -28,8 +28,8 @@ GEM
2828
activesupport (>= 4.0.2)
2929
fuzzy_match (~> 2.0.4)
3030
nap (~> 1.0)
31-
cocoapods-deintegrate (1.0.0)
32-
cocoapods-downloader (1.1.0)
31+
cocoapods-deintegrate (1.0.1)
32+
cocoapods-downloader (1.1.1)
3333
cocoapods-plugins (1.0.0)
3434
nap
3535
cocoapods-search (1.0.0)
@@ -45,22 +45,39 @@ GEM
4545
fourflusher (0.3.2)
4646
fuzzy_match (2.0.4)
4747
i18n (0.7.0)
48+
jazzy (0.7.2)
49+
cocoapods (~> 1.0)
50+
mustache (~> 0.99)
51+
open4
52+
redcarpet (~> 3.2)
53+
rouge (~> 1.5)
54+
sass (~> 3.4)
55+
sqlite3 (~> 1.3)
56+
xcinvoke (~> 0.2.1)
57+
liferaft (0.0.4)
4858
method_source (0.8.2)
4959
minitest (5.9.0)
5060
molinillo (0.4.5)
61+
mustache (0.99.8)
5162
nap (1.1.0)
5263
netrc (0.7.8)
64+
open4 (1.3.4)
5365
pry (0.10.4)
5466
coderay (~> 1.1.0)
5567
method_source (~> 0.8.1)
5668
slop (~> 3.4)
5769
rake (11.2.2)
70+
redcarpet (3.3.4)
5871
rouge (1.11.1)
72+
sass (3.4.22)
5973
slop (3.6.0)
74+
sqlite3 (1.3.11)
6075
thread_safe (0.3.5)
6176
tzinfo (1.2.2)
6277
thread_safe (~> 0.1)
63-
xcodeproj (1.2.0)
78+
xcinvoke (0.2.1)
79+
liferaft (~> 0.0.4)
80+
xcodeproj (1.3.1)
6481
activesupport (>= 3)
6582
claide (>= 1.0.0, < 2.0)
6683
colored (~> 1.2)
@@ -72,6 +89,7 @@ PLATFORMS
7289

7390
DEPENDENCIES
7491
cocoapods (~> 1.0.0)
92+
jazzy (~> 0.7.0)
7593
pry
7694
rake
7795
xcpretty

ICInputAccessory.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ICInputAccessory"
3-
s.version = "1.1.0"
3+
s.version = "1.2.0"
44
s.summary = "A customized token text field used in the iCook app."
55
s.description = <<-DESC
66
ICKeyboardDismissTextField:

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>1.1.0</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)