github_changelog_generator 1.2.8 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -1,18 +1,32 @@
1
- GitHub Changelog Generator
2
- ==================
3
1
 
4
2
  [![Gem Version](https://badge.fury.io/rb/github_changelog_generator.svg)](http://badge.fury.io/rb/github_changelog_generator)
5
3
  [![Build Status](https://travis-ci.org/skywinder/Github-Changelog-Generator.svg?branch=master)](https://travis-ci.org/skywinder/Github-Changelog-Generator)
6
4
 
5
+ GitHub Changelog Generator
6
+ ==================
7
+
8
+ - [Installation](#installation)
9
+ - [Output example](#output-example)
10
+ - [Usage](#usage)
11
+ - [Params](#params)
12
+ - [GitHub token](#github-token)
13
+ - [Features and advantages of this project](#features-and-advantages-of-this-project)
14
+ - [Alternatives](#alternatives)
15
+ - [Projects using this library](#projects-using-this-library)
16
+ - [Am I missed some essential feature?](#am-i-missed-some-essential-feature)
17
+ - [Contributing](#contributing)
18
+ - [License](#license)
19
+
20
+
7
21
  Changelog generation has never been so easy.
8
22
 
9
- **Fully automate changelog generation** - This script automatically generate change-log from your tags, issues and merged pull-requests from your project's **Github issue tracker**.
23
+ **Fully automate changelog generation** - This gem generate change log file based on tags, issues and merged pull requests from **Github issue tracker**. This generator complies all [change log format guidelines](http://keepachangelog.com/).
10
24
 
11
- ## Installation:
25
+ ## Installation
12
26
 
13
27
  [sudo] gem install github_changelog_generator
14
28
 
15
- ## Output example:
29
+ ## Output example
16
30
 
17
31
  - Look at **[CHANGELOG.md](https://github.com/skywinder/Github-Changelog-Generator/blob/master/CHANGELOG.md)** for this project
18
32
  - [ActionSheetPicker-3.0/CHANGELOG.md](https://github.com/skywinder/ActionSheetPicker-3.0/blob/master/CHANGELOG.md) was generated by command:
@@ -40,18 +54,7 @@ Changelog generation has never been so easy.
40
54
  > - *Closed issue:* No "cancel" button [\#122](https://github.com/skywinder/ActionSheetPicker-3.0/issues/122)
41
55
 
42
56
 
43
- ###Features and advantages of this project as compared to other:
44
- - Custom date format supported
45
- - Automatically split issues by type:
46
- - **Issues** (closed issues w/o any labels)
47
- - **Merged pull-requests** (all merged pull-requests)
48
- - **Bug-fixes** (by label `bug` in issue)
49
- - **Enhancements** (by label `enhancement` in issue)
50
- - Excluding "questions" from changelog (issues marked as `question` labels)
51
- - Ability to manually specify in which version issue was fixed (in case, when closed date is not match) by setting `milestone` of issue the same name as tag of required version
52
- - Ability to exclude some issues from changelog (by labels)
53
-
54
- ## Usage:
57
+ ## Usage
55
58
  **It's really simple**:
56
59
 
57
60
  - If your **git remote** `origin` refer to your GitHub repo, then just go to your project folder and run:
@@ -64,24 +67,31 @@ Changelog generation has never been so easy.
64
67
 
65
68
  As output you will get `CHANGELOG.md` file with pretty *Markdown-formatted* changelog.
66
69
 
67
- ### Params:
70
+ ### Params
68
71
  Type `github_changelog_generator --help` for detailed usage.
69
72
 
70
73
  Usage: changelog_generator [options]
71
- -u, --user [USER] Username of the owner of target GitHub repo
72
- -p, --project [PROJECT] Name of project on GitHub
73
- -t, --token [TOKEN] To make more than 50 requests this script required your OAuth token for GitHub. You can generate here: https://github.com/settings/tokens/new
74
- -h, --help Displays Help
75
- --[no-]verbose Run verbosely. Default is true
76
- --[no-]issues Include closed issues to changelog. Default is true
77
- --[no-]issues-without-labels Include closed issues without any labels to changelog. Default is true
78
- --[no-]pull-requests Include pull-requests to changelog. Default is true
79
- -l, --last-changes Generate log between last 2 tags only
80
- --[no-]author Add author of pull-request in the end. Default is true
81
- -f, --date-format [FORMAT] Date format. Default is %d/%m/%y
82
- -o, --output [NAME] Output file. Default is CHANGELOG.md
83
- --labels x,y,z List of labels. Issues with that labels will be included to changelog. Default is 'bug,enhancement'
84
- -v, --version Print version number
74
+ -u, --user [USER] Username of the owner of target GitHub repo
75
+ -p, --project [PROJECT] Name of project on GitHub
76
+ -t, --token [TOKEN] To make more than 50 requests per hour your GitHub token required. You can generate it here: https://github.com/settings/tokens/new
77
+ -f, --date-format [FORMAT] Date format. Default is %d/%m/%y
78
+ -o, --output [NAME] Output file. Default is CHANGELOG.md
79
+ --[no-]verbose Run verbosely. Default is true
80
+ --[no-]issues Include closed issues to changelog. Default is true
81
+ --[no-]issues-wo-labels Include closed issues without labels to changelog. Default is true
82
+ --[no-]pr-wo-labels Include pull requests without labels to changelog. Default is true
83
+ --[no-]pull-requests Include pull-requests to changelog. Default is true
84
+ --[no-]filter-by-milestone Use milestone to detect when issue was resolved. Default is true
85
+ --[no-]author Add author of pull-request in the end. Default is true
86
+ --unreleased-only Generate log from unreleased closed issues only.
87
+ --[no-]unreleased Add to log unreleased closed issues. Default is true
88
+ --[no-]compare-link Include compare link between older version and newer version. Default is true
89
+ --include-labels x,y,z Issues only with that labels will be included to changelog. Default is 'bug,enhancement'
90
+ --exclude-labels x,y,z Issues with that labels will be always excluded from changelog. Default is 'duplicate,question,invalid,wontfix'
91
+ --github-site [URL] The Enterprise Github site on which your project is hosted.
92
+ --github-api [URL] The enterprise endpoint to use for your Github API.
93
+ -v, --version Print version number
94
+ -h, --help Displays Help
85
95
 
86
96
 
87
97
  ### GitHub token
@@ -104,10 +114,32 @@ So, if you got error like this:
104
114
 
105
115
  It's time to create this token or wait for 1 hour before GitHub reset the counter for your IP.
106
116
 
107
- ## Projects using this library
117
+ ##Features and advantages of this project
118
+ - Generate canonical change log file, followed by [keepachangelog.com guidlines](http://keepachangelog.com/)
119
+ - Simply add links for all closed issues and merged pull requests
120
+ - Possible to generate **Unreleased** changes (closed issues that have not released yet)
121
+ - Flexible format customisation:
122
+ - Customize issues, that should be added to changelog
123
+ - Custom date format supported
124
+ - Ability to manually specify in which version issue was fixed (in case, when closed date is not match) by setting `milestone` of issue the same name as tag of required version
125
+ - Ability to exclude specific issues from change log (by labels)
126
+ - Automatically exclude "questions" - issues marked as `question` labels (and other issues, that shouldn't be in change log file: with `duplicate invalid wontfix` labels)
127
+ - Distinguish bug fixes, enchantments, and closed issues according labels.
128
+ - **Issues** (closed issues w/o any labels)
129
+ - **Merged pull-requests** (all merged pull-requests)
130
+ - **Bug-fixes** (by label `bug` in issue)
131
+ - **Enhancements** (by label `enhancement` in issue)
132
+
133
+ ###Alternatives
134
+ Here is a [wikipage list of alternatives](https://github.com/skywinder/Github-Changelog-Generator/wiki/Alternatives), that I found. But no one was satisfy my requirements.
135
+
136
+ *If you know other projects - feel free to edit this Wiki page!*
137
+
138
+
139
+ ### Projects using this library
108
140
  [Wikipage with list of projects](https://github.com/skywinder/Github-Changelog-Generator/wiki/Projects-using-Github-Changelog-Generator)
109
141
 
110
- *If you are using `github_changelog_generator` for generation changelog in your project or know of project that uses it, please add it to [this] (https://github.com/skywinder/Github-Changelog-Generator/wiki/Projects-using-Github-Changelog-Generator) list.*
142
+ *If you are using `github_changelog_generator` for generation change log in your project or know of project that uses it, please add it to [this] (https://github.com/skywinder/Github-Changelog-Generator/wiki/Projects-using-Github-Changelog-Generator) list.*
111
143
 
112
144
  ## Am I missed some essential feature?
113
145
 
data/lib/CHANGELOG.md CHANGED
@@ -1,133 +1,778 @@
1
- # Changelog
1
+ # Change Log
2
2
 
3
- ## [1.2.7](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.7)
4
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.6...1.2.7)
5
- #### 26/01/15
6
- - *Merged pull-request:* Add compare link between older version and newer version [\#46](https://github.com/skywinder/Github-Changelog-Generator/pull/46) ([sue445](https://github.com/sue445))
3
+ ## [Unreleased](https://github.com/skywinder/ActionSheetPicker-3.0/tree/HEAD) (2015-02-26)
4
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.13...HEAD)
7
5
 
8
- ## [1.2.6](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.6)
9
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.5...1.2.6)
10
- #### 21/01/15
11
- - *Merged pull-request:* fix link tag format [\#45](https://github.com/skywinder/Github-Changelog-Generator/pull/45) ([sugamasao](https://github.com/sugamasao))
12
6
 
13
- ## [1.2.5](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.5)
14
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.4...1.2.5)
15
- #### 15/01/15
16
- - *Merged pull-request:* PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/skywinder/Github-Changelog-Generator/pull/43) ([schwing](https://github.com/schwing))
17
7
 
18
- - *Merged pull-request:* support enterprise github via command line options [\#42](https://github.com/skywinder/Github-Changelog-Generator/pull/42) ([glenlovett](https://github.com/glenlovett))
8
+ ### Merged pull requests:
19
9
 
20
- - *Implemented enhancement:* Use milestone to specify in which version bug was fixed [\#22](https://github.com/skywinder/Github-Changelog-Generator/issues/22)
10
+ - Add additional showPickerWithTitle method [\#143](https://github.com/skywinder/ActionSheetPicker-3.0/pull/143) ([martinpfannemueller](https://github.com/martinpfannemueller))
21
11
 
22
- - *Fixed bug:* Error when trying to generate log for repo without tags [\#32](https://github.com/skywinder/Github-Changelog-Generator/issues/32)
23
12
 
24
- ## [1.2.4](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.4)
25
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.3...1.2.4)
26
- #### 16/12/14
27
- - *Merged pull-request:* Fix crash when user is NULL [\#40](https://github.com/skywinder/Github-Changelog-Generator/pull/40) ([skywinder](https://github.com/skywinder))
28
13
 
29
- - *Merged pull-request:* Implement async fetching [\#39](https://github.com/skywinder/Github-Changelog-Generator/pull/39) ([skywinder](https://github.com/skywinder))
30
14
 
31
- - *Implemented enhancement:* Add ability to run with one parameter instead -u -p [\#38](https://github.com/skywinder/Github-Changelog-Generator/issues/38)
32
15
 
33
- - *Fixed bug:* Crash when try generate log for rails [\#35](https://github.com/skywinder/Github-Changelog-Generator/issues/35)
16
+ ## [1.3.13](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.13) (2015-02-09)
17
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.12...1.3.13)
34
18
 
35
- ## [1.2.3](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.3)
36
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.2...1.2.3)
37
- #### 16/12/14
38
- - *Implemented enhancement:* Detailed output [\#33](https://github.com/skywinder/Github-Changelog-Generator/issues/33)
19
+ ### Fixed bugs:
39
20
 
40
- - *Fixed bug:* Docs lacking or basic behavior not as advertised [\#30](https://github.com/skywinder/Github-Changelog-Generator/issues/30)
21
+ - Wrong background color of pickers [\#136](https://github.com/skywinder/ActionSheetPicker-3.0/issues/136)
41
22
 
42
- ## [1.2.2](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.2)
43
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.1...1.2.2)
44
- #### 10/12/14
45
- - *Merged pull-request:* Add a Bitdeli Badge to README [\#36](https://github.com/skywinder/Github-Changelog-Generator/pull/36) ([bitdeli-chef](https://github.com/bitdeli-chef))
46
23
 
47
- - *Fixed bug:* Encapsulate \[ \> \* \_ \ \] signs in issues names [\#34](https://github.com/skywinder/Github-Changelog-Generator/issues/34)
48
24
 
49
- ## [1.2.1](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.1)
50
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.0...1.2.1)
51
- #### 22/11/14
52
- - *Merged pull-request:* Issues for last tag not in list [\#29](https://github.com/skywinder/Github-Changelog-Generator/pull/29) ([skywinder](https://github.com/skywinder))
25
+ ### Merged pull requests:
53
26
 
54
- - *Merged pull-request:* Disable default --filter-pull-requests option. [\#28](https://github.com/skywinder/Github-Changelog-Generator/pull/28) ([skywinder](https://github.com/skywinder))
27
+ - Fixed an issue when initial selections applied to picker with different number of rows for different components. [\#113](https://github.com/skywinder/ActionSheetPicker-3.0/pull/113) ([venj](https://github.com/venj))
55
28
 
56
- - *Fixed bug:* Script fills changelog only for first 30 tags. [\#20](https://github.com/skywinder/Github-Changelog-Generator/issues/20)
57
29
 
58
- ## [1.2.0](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.0)
59
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.4...1.2.0)
60
- #### 19/11/14
61
- - *Merged pull-request:* Add filter for pull-requests labels. \(option --filter-pull-requests\) [\#27](https://github.com/skywinder/Github-Changelog-Generator/pull/27) ([skywinder](https://github.com/skywinder))
62
30
 
63
- - *Merged pull-request:* Test Pull-Request SHOULD NOT APPEAR IN LOG! [\#26](https://github.com/skywinder/Github-Changelog-Generator/pull/26) ([skywinder](https://github.com/skywinder))
64
31
 
65
- - *Merged pull-request:* Add ability to insert authors of pull-requests \(--\[no-\]author option\) [\#25](https://github.com/skywinder/Github-Changelog-Generator/pull/25) ([skywinder](https://github.com/skywinder))
66
32
 
67
- - *Merged pull-request:* Don't receive issues in case of --no-isses flag specied [\#24](https://github.com/skywinder/Github-Changelog-Generator/pull/24) ([skywinder](https://github.com/skywinder))
33
+ ## [1.3.12](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.12) (2015-02-04)
34
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.11...1.3.12)
68
35
 
69
- ## [1.1.4](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.4)
70
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.2...1.1.4)
71
- #### 18/11/14
72
- - *Merged pull-request:* Sort tags by date [\#23](https://github.com/skywinder/Github-Changelog-Generator/pull/23) ([skywinder](https://github.com/skywinder))
36
+ ### Fixed bugs:
73
37
 
74
- - *Implemented enhancement:* Implement ability to retrieve GitHub token from ENV variable \(to not put it to script directly\) [\#19](https://github.com/skywinder/Github-Changelog-Generator/issues/19)
38
+ - Light status bar style [\#119](https://github.com/skywinder/ActionSheetPicker-3.0/issues/119)
75
39
 
76
- ## [1.1.2](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.2)
77
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.1...1.1.2)
78
- #### 12/11/14
79
- - *Merged pull-request:* Fix bug with dot signs in project name [\#18](https://github.com/skywinder/Github-Changelog-Generator/pull/18) ([skywinder](https://github.com/skywinder))
80
40
 
81
- - *Merged pull-request:* Fix bug with dot signs in user name [\#17](https://github.com/skywinder/Github-Changelog-Generator/pull/17) ([skywinder](https://github.com/skywinder))
82
41
 
83
- ## [1.1.1](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.1)
84
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.0...1.1.1)
85
- #### 10/11/14
86
- - *Merged pull-request:* Remove duplicates of issues and pull-requests with same number [\#15](https://github.com/skywinder/Github-Changelog-Generator/pull/15) ([skywinder](https://github.com/skywinder))
87
42
 
88
- - *Merged pull-request:* Sort issues by tags [\#14](https://github.com/skywinder/Github-Changelog-Generator/pull/14) ([skywinder](https://github.com/skywinder))
89
43
 
90
- - *Merged pull-request:* Add ability to add or exclude issues without any labels [\#13](https://github.com/skywinder/Github-Changelog-Generator/pull/13) ([skywinder](https://github.com/skywinder))
44
+ ## [1.3.11](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.11) (2015-01-15)
45
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.10...1.3.11)
91
46
 
92
- ## [1.1.0](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.0)
93
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.0.1...1.1.0)
94
- #### 10/11/14
95
- - *Implemented enhancement:* Detect username and project form origin [\#11](https://github.com/skywinder/Github-Changelog-Generator/issues/11)
96
47
 
97
- - *Fixed bug:* Markdown formating in the last line wrong [\#9](https://github.com/skywinder/Github-Changelog-Generator/issues/9)
98
48
 
99
- - *Fixed bug:* Bug with wrong credentials in 1.0.1 [\#12](https://github.com/skywinder/Github-Changelog-Generator/issues/12)
49
+ ### Merged pull requests:
100
50
 
101
- ## [1.0.1](https://github.com/skywinder/Github-Changelog-Generator/tree/1.0.1)
102
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.0.0...1.0.1)
103
- #### 10/11/14
104
- ## [1.0.0](https://github.com/skywinder/Github-Changelog-Generator/tree/1.0.0)
105
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/0.1.0...1.0.0)
106
- #### 07/11/14
107
- - *Merged pull-request:* Implement support of different tags. [\#8](https://github.com/skywinder/Github-Changelog-Generator/pull/8) ([skywinder](https://github.com/skywinder))
51
+ - Fixes a crash while closing when using the Classy framework for styling [\#128](https://github.com/skywinder/ActionSheetPicker-3.0/pull/128) ([sudeepsidhu](https://github.com/sudeepsidhu))
108
52
 
109
- - *Merged pull-request:* Add support for issues in CHANGELOG [\#7](https://github.com/skywinder/Github-Changelog-Generator/pull/7) ([skywinder](https://github.com/skywinder))
110
53
 
111
- - *Merged pull-request:* Fix parsing date of pull request [\#3](https://github.com/skywinder/Github-Changelog-Generator/pull/3) ([skywinder](https://github.com/skywinder))
112
54
 
113
- - *Implemented enhancement:* Implement option to specify output filename [\#4](https://github.com/skywinder/Github-Changelog-Generator/issues/4)
55
+ - .m files should not be included in public header files [\#127](https://github.com/skywinder/ActionSheetPicker-3.0/pull/127) ([ened](https://github.com/ened))
114
56
 
115
- - *Implemented enhancement:* Add support for fixed issues and implemented enchanments. [\#6](https://github.com/skywinder/Github-Changelog-Generator/issues/6)
116
57
 
117
- - *Fixed bug:* Last tag not appeared in changelog [\#5](https://github.com/skywinder/Github-Changelog-Generator/issues/5)
118
58
 
119
- ## [0.1.0](https://github.com/skywinder/Github-Changelog-Generator/tree/0.1.0)
120
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/0.0.2...0.1.0)
121
- #### 07/11/14
122
- - *Merged pull-request:* Add changelog generation for last tag [\#2](https://github.com/skywinder/Github-Changelog-Generator/pull/2) ([skywinder](https://github.com/skywinder))
123
59
 
124
- - *Merged pull-request:* Add option \(-o --output\) to specify name of the output file. [\#1](https://github.com/skywinder/Github-Changelog-Generator/pull/1) ([skywinder](https://github.com/skywinder))
125
60
 
126
- ## [0.0.2](https://github.com/skywinder/Github-Changelog-Generator/tree/0.0.2)
127
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/0.0.1...0.0.2)
128
- #### 06/11/14
129
- ## [0.0.1](https://github.com/skywinder/Github-Changelog-Generator/tree/0.0.1)
130
- #### 06/11/14
61
+ ## [1.3.10](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.10) (2015-01-09)
62
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.9...1.3.10)
63
+ ### Implemented enhancements:
131
64
 
65
+ - Should have minimum/maximum date property exposed [\#97](https://github.com/skywinder/ActionSheetPicker-3.0/issues/97)
132
66
 
133
- \* *This changelog was generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
67
+
68
+
69
+ ### Closed issues:
70
+
71
+ - No "cancel" button [\#122](https://github.com/skywinder/ActionSheetPicker-3.0/issues/122)
72
+
73
+ - Swift; Does not conform to protocol [\#120](https://github.com/skywinder/ActionSheetPicker-3.0/issues/120)
74
+
75
+
76
+ ### Merged pull requests:
77
+
78
+ - add header file to public [\#115](https://github.com/skywinder/ActionSheetPicker-3.0/pull/115) ([skywinder](https://github.com/skywinder))
79
+
80
+
81
+
82
+
83
+
84
+ ## [1.3.9](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.9) (2014-12-11)
85
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.8...1.3.9)
86
+
87
+
88
+ ### Closed issues:
89
+
90
+ - Bad interaction with submodules [\#111](https://github.com/skywinder/ActionSheetPicker-3.0/issues/111)
91
+
92
+
93
+ ### Merged pull requests:
94
+
95
+ - Fix bad interaction with Git submodules. Fixes issue #111. [\#112](https://github.com/skywinder/ActionSheetPicker-3.0/pull/112) ([JimDabell](https://github.com/JimDabell))
96
+
97
+
98
+
99
+
100
+
101
+ ## [1.3.8](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.8) (2014-12-10)
102
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.7...1.3.8)
103
+
104
+
105
+ ### Closed issues:
106
+
107
+ - Redefinition of enumerator 'Selector' [\#109](https://github.com/skywinder/ActionSheetPicker-3.0/issues/109)
108
+
109
+
110
+ ### Merged pull requests:
111
+
112
+ - Fix for #109 [\#110](https://github.com/skywinder/ActionSheetPicker-3.0/pull/110) ([michalciolek](https://github.com/michalciolek))
113
+
114
+
115
+
116
+ - Fixed an issue when more than one ActionSheetCustomPicker is used in a ViewController [\#108](https://github.com/skywinder/ActionSheetPicker-3.0/pull/108) ([venj](https://github.com/venj))
117
+
118
+
119
+
120
+
121
+
122
+ ## [1.3.7](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.7) (2014-12-04)
123
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.6...1.3.7)
124
+
125
+ ### Fixed bugs:
126
+
127
+ - UIDatePicker does not fire the target-action associated with the UIControlEventValueChanged event the first time [\#104](https://github.com/skywinder/ActionSheetPicker-3.0/issues/104)
128
+
129
+
130
+
131
+ ### Merged pull requests:
132
+
133
+ - Added workaround for a bug in UIDatePicker in count down mode. [\#105](https://github.com/skywinder/ActionSheetPicker-3.0/pull/105) ([tomaskraina](https://github.com/tomaskraina))
134
+
135
+
136
+
137
+ - Added minimumDate and maximumDate to contructor of ActionSheetDatePicker [\#98](https://github.com/skywinder/ActionSheetPicker-3.0/pull/98) ([emmanuelay](https://github.com/emmanuelay))
138
+
139
+
140
+
141
+
142
+
143
+ ## [1.3.6](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.6) (2014-12-02)
144
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.5...1.3.6)
145
+
146
+ ### Fixed bugs:
147
+
148
+ - Example projects failed to launch [\#96](https://github.com/skywinder/ActionSheetPicker-3.0/issues/96)
149
+
150
+
151
+ ### Closed issues:
152
+
153
+ - Travis builds is broken by fix #96 [\#99](https://github.com/skywinder/ActionSheetPicker-3.0/issues/99)
154
+
155
+
156
+ ### Merged pull requests:
157
+
158
+ - Add a Bitdeli Badge to README [\#107](https://github.com/skywinder/ActionSheetPicker-3.0/pull/107) ([bitdeli-chef](https://github.com/bitdeli-chef))
159
+
160
+
161
+
162
+
163
+
164
+ ## [1.3.5](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.5) (2014-11-14)
165
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.4...1.3.5)
166
+
167
+ ### Fixed bugs:
168
+
169
+ - StatusBar visibility [\#90](https://github.com/skywinder/ActionSheetPicker-3.0/issues/90)
170
+
171
+
172
+
173
+ ### Merged pull requests:
174
+
175
+ - Update README.md [\#95](https://github.com/skywinder/ActionSheetPicker-3.0/pull/95) ([jeffreyjackson](https://github.com/jeffreyjackson))
176
+
177
+
178
+
179
+
180
+
181
+ ## [1.3.4](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.4) (2014-11-12)
182
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.3...1.3.4)
183
+
184
+
185
+
186
+ ### Merged pull requests:
187
+
188
+ - Fix statusBar visibility [\#93](https://github.com/skywinder/ActionSheetPicker-3.0/pull/93) ([krin-san](https://github.com/krin-san))
189
+
190
+
191
+
192
+
193
+
194
+ ## [1.3.3](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.3) (2014-11-12)
195
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.2...1.3.3)
196
+
197
+ ### Fixed bugs:
198
+
199
+ - Compiler warning due to Unicode char in source [\#92](https://github.com/skywinder/ActionSheetPicker-3.0/issues/92)
200
+
201
+
202
+
203
+
204
+
205
+ ## [1.3.2](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.2) (2014-11-11)
206
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.1...1.3.2)
207
+ ### Implemented enhancements:
208
+
209
+ - Add delegate for custom button pressed [\#33](https://github.com/skywinder/ActionSheetPicker-3.0/issues/33)
210
+
211
+
212
+
213
+
214
+ ### Merged pull requests:
215
+
216
+ - Add additional check for UIDatePickerModeCountDownTimer [\#91](https://github.com/skywinder/ActionSheetPicker-3.0/pull/91) ([skywinder](https://github.com/skywinder))
217
+
218
+
219
+
220
+ - Count down duration fix [\#89](https://github.com/skywinder/ActionSheetPicker-3.0/pull/89) ([ijameelkhan](https://github.com/ijameelkhan))
221
+
222
+
223
+
224
+
225
+
226
+ ## [1.3.1](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.1) (2014-11-04)
227
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.3.0...1.3.1)
228
+
229
+
230
+
231
+ ### Merged pull requests:
232
+
233
+ - Fix for #84 and #63 [\#85](https://github.com/skywinder/ActionSheetPicker-3.0/pull/85) ([skywinder](https://github.com/skywinder))
234
+
235
+
236
+
237
+
238
+
239
+ ## [1.3.0](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.3.0) (2014-11-03)
240
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.2.0...1.3.0)
241
+
242
+ ### Fixed bugs:
243
+
244
+ - iPad - Swift Popover not visible [\#68](https://github.com/skywinder/ActionSheetPicker-3.0/issues/68)
245
+
246
+
247
+
248
+ ### Merged pull requests:
249
+
250
+ - Added callback for custom button being pressed [\#81](https://github.com/skywinder/ActionSheetPicker-3.0/pull/81) ([velga](https://github.com/velga))
251
+
252
+
253
+
254
+ - Added support for popover customizations. [\#77](https://github.com/skywinder/ActionSheetPicker-3.0/pull/77) ([openreply](https://github.com/openreply))
255
+
256
+
257
+
258
+
259
+
260
+ ## [1.2.0](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.2.0) (2014-10-15)
261
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.21...1.2.0)
262
+
263
+
264
+
265
+ ### Merged pull requests:
266
+
267
+ - General fixes for #74 & #50 [\#76](https://github.com/skywinder/ActionSheetPicker-3.0/pull/76) ([skywinder](https://github.com/skywinder))
268
+
269
+
270
+
271
+ - Further support for countdown timer [\#74](https://github.com/skywinder/ActionSheetPicker-3.0/pull/74) ([mgmart](https://github.com/mgmart))
272
+
273
+
274
+
275
+
276
+
277
+ ## [1.1.21](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.21) (2014-10-13)
278
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.20...1.1.21)
279
+
280
+ ### Fixed bugs:
281
+
282
+ - i used DatePicker in ActionSheetPicket-3.0, but app crashed. [\#65](https://github.com/skywinder/ActionSheetPicker-3.0/issues/65)
283
+
284
+
285
+ ### Closed issues:
286
+
287
+ - ActionSheetString picker Crash [\#75](https://github.com/skywinder/ActionSheetPicker-3.0/issues/75)
288
+
289
+
290
+
291
+
292
+ ## [1.1.20](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.20) (2014-10-13)
293
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.19...1.1.20)
294
+
295
+
296
+ ### Closed issues:
297
+
298
+ - ActionSheetDatePicker: set selectedDate in response to custom button press [\#73](https://github.com/skywinder/ActionSheetPicker-3.0/issues/73)
299
+
300
+ - Using ActionSheetDatePicker as CountDownTimer-Picker [\#72](https://github.com/skywinder/ActionSheetPicker-3.0/issues/72)
301
+
302
+ - Example fails when clicking "Modal Test": 'Pushing a navigation controller is not supported' [\#70](https://github.com/skywinder/ActionSheetPicker-3.0/issues/70)
303
+
304
+
305
+
306
+
307
+ ## [1.1.19](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.19) (2014-10-07)
308
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.18...1.1.19)
309
+
310
+ ### Fixed bugs:
311
+
312
+ - Xcode 6 / Swift incompatibility [\#36](https://github.com/skywinder/ActionSheetPicker-3.0/issues/36)
313
+
314
+
315
+
316
+ ### Merged pull requests:
317
+
318
+ - title text with attributes. [\#64](https://github.com/skywinder/ActionSheetPicker-3.0/pull/64) ([nebiros](https://github.com/nebiros))
319
+
320
+
321
+
322
+
323
+
324
+ ## [1.1.18](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.18) (2014-10-03)
325
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.17...1.1.18)
326
+
327
+
328
+
329
+
330
+
331
+ ## [1.1.17](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.17) (2014-10-03)
332
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.16...1.1.17)
333
+
334
+
335
+
336
+
337
+
338
+ ## [1.1.16](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.16) (2014-10-03)
339
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.15...1.1.16)
340
+
341
+
342
+
343
+
344
+
345
+ ## [1.1.15](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.15) (2014-09-29)
346
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.14...1.1.15)
347
+ ### Implemented enhancements:
348
+
349
+ - Method request: hideActionSheetPicker [\#51](https://github.com/skywinder/ActionSheetPicker-3.0/issues/51)
350
+
351
+
352
+ ### Fixed bugs:
353
+
354
+ - DatePicker callback freezes screen [\#42](https://github.com/skywinder/ActionSheetPicker-3.0/issues/42)
355
+
356
+
357
+
358
+ ### Merged pull requests:
359
+
360
+ - Update SWActionSheet.m [\#60](https://github.com/skywinder/ActionSheetPicker-3.0/pull/60) ([zhongyang](https://github.com/zhongyang))
361
+
362
+
363
+
364
+ - Fix for UIDatePickerModeCountDownTimer callback [\#50](https://github.com/skywinder/ActionSheetPicker-3.0/pull/50) ([jklp](https://github.com/jklp))
365
+
366
+
367
+
368
+
369
+
370
+ ## [1.1.14](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.14) (2014-09-28)
371
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.13...1.1.14)
372
+
373
+
374
+
375
+ ### Merged pull requests:
376
+
377
+ - add block based API to date picker [\#56](https://github.com/skywinder/ActionSheetPicker-3.0/pull/56) ([mrtj](https://github.com/mrtj))
378
+
379
+
380
+
381
+
382
+
383
+ ## [1.1.13](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.13) (2014-09-19)
384
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.12...1.1.13)
385
+
386
+
387
+ ### Closed issues:
388
+
389
+ - impossible to run in xcode 6 [\#48](https://github.com/skywinder/ActionSheetPicker-3.0/issues/48)
390
+
391
+
392
+ ### Merged pull requests:
393
+
394
+ - update badge [\#46](https://github.com/skywinder/ActionSheetPicker-3.0/pull/46) ([skywinder](https://github.com/skywinder))
395
+
396
+
397
+
398
+ - Add badge [\#45](https://github.com/skywinder/ActionSheetPicker-3.0/pull/45) ([skywinder](https://github.com/skywinder))
399
+
400
+
401
+
402
+ - reformat [\#44](https://github.com/skywinder/ActionSheetPicker-3.0/pull/44) ([skywinder](https://github.com/skywinder))
403
+
404
+
405
+
406
+
407
+
408
+ ## [1.1.12](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.12) (2014-09-17)
409
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.11...1.1.12)
410
+
411
+
412
+
413
+ ### Merged pull requests:
414
+
415
+ - unexpected action sheet dismissing in portrait mode only [\#40](https://github.com/skywinder/ActionSheetPicker-3.0/pull/40) ([numen31337](https://github.com/numen31337))
416
+
417
+
418
+
419
+ - Support ActionSheet width to full-screen-width in 4.7 inch and 5.5 inch devices [\#38](https://github.com/skywinder/ActionSheetPicker-3.0/pull/38) ([nowsprinting](https://github.com/nowsprinting))
420
+
421
+
422
+
423
+
424
+
425
+ ## [1.1.11](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.11) (2014-09-16)
426
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.10...1.1.11)
427
+ ### Implemented enhancements:
428
+
429
+ - Pop over direction [\#28](https://github.com/skywinder/ActionSheetPicker-3.0/issues/28)
430
+
431
+ - ActionSheetDatePicker needs done/cancel blocks [\#37](https://github.com/skywinder/ActionSheetPicker-3.0/issues/37)
432
+
433
+
434
+ ### Fixed bugs:
435
+
436
+ - Show from a presented view controller [\#31](https://github.com/skywinder/ActionSheetPicker-3.0/issues/31)
437
+
438
+ - ActionSheetStringPicker not showing on iphone [\#30](https://github.com/skywinder/ActionSheetPicker-3.0/issues/30)
439
+
440
+
441
+ ### Closed issues:
442
+
443
+ - ActionSheetPicker needs cancel block to handle hiding [\#39](https://github.com/skywinder/ActionSheetPicker-3.0/issues/39)
444
+
445
+
446
+ ### Merged pull requests:
447
+
448
+ - Notify cancel on popover dismiss [\#34](https://github.com/skywinder/ActionSheetPicker-3.0/pull/34) ([ynop](https://github.com/ynop))
449
+
450
+
451
+
452
+
453
+
454
+ ## [1.1.10](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.10) (2014-09-04)
455
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.9...1.1.10)
456
+
457
+
458
+
459
+ ### Merged pull requests:
460
+
461
+ - Method for presenting overlapping views. [\#32](https://github.com/skywinder/ActionSheetPicker-3.0/pull/32) ([serebryakov-av](https://github.com/serebryakov-av))
462
+
463
+
464
+
465
+
466
+
467
+ ## [1.1.9](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.9) (2014-09-03)
468
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.8...1.1.9)
469
+
470
+
471
+
472
+ ### Merged pull requests:
473
+
474
+ - Update SWActionSheet.m [\#29](https://github.com/skywinder/ActionSheetPicker-3.0/pull/29) ([serebryakov-av](https://github.com/serebryakov-av))
475
+
476
+
477
+
478
+
479
+
480
+ ## [1.1.8](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.8) (2014-08-29)
481
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.7...1.1.8)
482
+
483
+
484
+
485
+
486
+
487
+ ## [1.1.7](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.7) (2014-08-29)
488
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.6...1.1.7)
489
+
490
+
491
+
492
+
493
+
494
+ ## [1.1.6](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.6) (2014-08-27)
495
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.5...1.1.6)
496
+
497
+
498
+ ### Closed issues:
499
+
500
+ - Still getting warnings [\#16](https://github.com/skywinder/ActionSheetPicker-3.0/issues/16)
501
+
502
+
503
+ ### Merged pull requests:
504
+
505
+ - fix readme code [\#26](https://github.com/skywinder/ActionSheetPicker-3.0/pull/26) ([abeyuya](https://github.com/abeyuya))
506
+
507
+
508
+
509
+
510
+
511
+ ## [1.1.5](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.5) (2014-08-26)
512
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/compilerBug...1.1.5)
513
+
514
+ ### Fixed bugs:
515
+
516
+ - Toolbar buttons don't appear when Actionsheet is fired from an iPad Form Sheet or Page Sheet [\#22](https://github.com/skywinder/ActionSheetPicker-3.0/issues/22)
517
+
518
+
519
+
520
+
521
+
522
+ ## [compilerBug](https://github.com/skywinder/ActionSheetPicker-3.0/tree/compilerBug) (2014-08-26)
523
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.4...compilerBug)
524
+
525
+
526
+
527
+
528
+
529
+ ## [1.1.4](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.4) (2014-08-26)
530
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.3...1.1.4)
531
+
532
+ ### Fixed bugs:
533
+
534
+ - iOS 8 iPad wrong frame size. [\#18](https://github.com/skywinder/ActionSheetPicker-3.0/issues/18)
535
+
536
+
537
+ ### Closed issues:
538
+
539
+ - iOS8 - iPad popover, wrong size [\#24](https://github.com/skywinder/ActionSheetPicker-3.0/issues/24)
540
+
541
+
542
+ ### Merged pull requests:
543
+
544
+ - fix iOS8 wrong popover size in iPad [\#25](https://github.com/skywinder/ActionSheetPicker-3.0/pull/25) ([AdrianFlorian](https://github.com/AdrianFlorian))
545
+
546
+
547
+
548
+
549
+
550
+ ## [1.1.3](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.3) (2014-08-25)
551
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.2...1.1.3)
552
+
553
+
554
+ ### Closed issues:
555
+
556
+ - Presented in wrong frame when sender is a navbar bar button item [\#23](https://github.com/skywinder/ActionSheetPicker-3.0/issues/23)
557
+
558
+ - done button color [\#21](https://github.com/skywinder/ActionSheetPicker-3.0/issues/21)
559
+
560
+
561
+
562
+
563
+ ## [1.1.2](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.2) (2014-08-15)
564
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.1.1...1.1.2)
565
+
566
+
567
+ ### Closed issues:
568
+
569
+ - Landscape broken in iOS 7 [\#17](https://github.com/skywinder/ActionSheetPicker-3.0/issues/17)
570
+
571
+ - Invalid context warning in landscape [\#13](https://github.com/skywinder/ActionSheetPicker-3.0/issues/13)
572
+
573
+
574
+
575
+
576
+ ## [1.1.1](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.1.1) (2014-08-13)
577
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.18...1.1.1)
578
+
579
+
580
+
581
+
582
+
583
+ ## [1.0.18](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.18) (2014-08-12)
584
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.17...1.0.18)
585
+
586
+
587
+
588
+
589
+
590
+ ## [1.0.17](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.17) (2014-08-12)
591
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.15...1.0.17)
592
+
593
+
594
+ ### Closed issues:
595
+
596
+ - Issue with iOS 8 beta [\#9](https://github.com/skywinder/ActionSheetPicker-3.0/issues/9)
597
+
598
+
599
+
600
+
601
+ ## [1.0.15](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.15) (2014-08-11)
602
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.14...1.0.15)
603
+
604
+
605
+
606
+
607
+
608
+ ## [1.0.14](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.14) (2014-08-01)
609
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.13...1.0.14)
610
+
611
+
612
+
613
+ ### Merged pull requests:
614
+
615
+ - Set minimum date properly. [\#14](https://github.com/skywinder/ActionSheetPicker-3.0/pull/14) ([matt](https://github.com/matt))
616
+
617
+
618
+
619
+
620
+
621
+ ## [1.0.13](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.13) (2014-07-30)
622
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.12...1.0.13)
623
+
624
+
625
+ ### Closed issues:
626
+
627
+ - Use with UITableViewCells [\#4](https://github.com/skywinder/ActionSheetPicker-3.0/issues/4)
628
+
629
+
630
+ ### Merged pull requests:
631
+
632
+ - Minute Interval for ActionDatePicker [\#12](https://github.com/skywinder/ActionSheetPicker-3.0/pull/12) ([Jack-s](https://github.com/Jack-s))
633
+
634
+
635
+
636
+
637
+
638
+ ## [1.0.12](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.12) (2014-07-24)
639
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.11...1.0.12)
640
+
641
+
642
+ ### Closed issues:
643
+
644
+ - i get this warning!'sizeWithFont:' is deprecated: first deprecated in iOS 7.0 - Use -sizeWithAttributes: [\#11](https://github.com/skywinder/ActionSheetPicker-3.0/issues/11)
645
+
646
+ - configurePickerView for ActionSheetCustomPicker throws exception [\#10](https://github.com/skywinder/ActionSheetPicker-3.0/issues/10)
647
+
648
+
649
+
650
+
651
+ ## [1.0.11](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.11) (2014-07-19)
652
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.10...1.0.11)
653
+
654
+
655
+
656
+
657
+
658
+ ## [1.0.10](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.10) (2014-07-14)
659
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.9...1.0.10)
660
+
661
+
662
+
663
+
664
+
665
+ ## [1.0.9](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.9) (2014-07-07)
666
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.8...1.0.9)
667
+
668
+ ### Fixed bugs:
669
+
670
+ - Crash when using in 5s iOS 7.1 [\#8](https://github.com/skywinder/ActionSheetPicker-3.0/issues/8)
671
+
672
+ - On Iphone 4 the ActionSheetStringPicker doesn't work Well [\#5](https://github.com/skywinder/ActionSheetPicker-3.0/issues/5)
673
+
674
+
675
+
676
+
677
+
678
+ ## [1.0.8](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.8) (2014-06-29)
679
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.7...1.0.8)
680
+
681
+
682
+
683
+ ### Merged pull requests:
684
+
685
+ - added check for iPhone 4, to fix transparent view background problem. [\#6](https://github.com/skywinder/ActionSheetPicker-3.0/pull/6) ([JaseElder](https://github.com/JaseElder))
686
+
687
+
688
+
689
+
690
+
691
+ ## [1.0.7](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.7) (2014-06-20)
692
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.6...1.0.7)
693
+
694
+
695
+
696
+
697
+
698
+ ## [1.0.6](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.6) (2014-06-11)
699
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.5...1.0.6)
700
+
701
+
702
+
703
+
704
+
705
+ ## [1.0.5](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.5) (2014-05-27)
706
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.4...1.0.5)
707
+
708
+
709
+
710
+
711
+
712
+ ## [1.0.4](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.4) (2014-05-25)
713
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/0.0.4...1.0.4)
714
+
715
+
716
+
717
+
718
+
719
+ ## [0.0.4](https://github.com/skywinder/ActionSheetPicker-3.0/tree/0.0.4) (2014-05-25)
720
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.3...0.0.4)
721
+
722
+
723
+
724
+ ### Merged pull requests:
725
+
726
+ - Convert screenshots over to iOS 7. [\#3](https://github.com/skywinder/ActionSheetPicker-3.0/pull/3) ([markrickert](https://github.com/markrickert))
727
+
728
+
729
+
730
+ - Add basic documentation to the readme. [\#2](https://github.com/skywinder/ActionSheetPicker-3.0/pull/2) ([markrickert](https://github.com/markrickert))
731
+
732
+
733
+
734
+
735
+
736
+ ## [1.0.3](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.3) (2014-05-21)
737
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.2...1.0.3)
738
+
739
+
740
+
741
+
742
+
743
+ ## [1.0.2](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.2) (2014-05-21)
744
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/1.0.1...1.0.2)
745
+
746
+
747
+
748
+ ### Merged pull requests:
749
+
750
+ - Get tint color for actionsheet buttons from application window [\#1](https://github.com/skywinder/ActionSheetPicker-3.0/pull/1) ([Mau04](https://github.com/Mau04))
751
+
752
+
753
+
754
+
755
+
756
+ ## [1.0.1](https://github.com/skywinder/ActionSheetPicker-3.0/tree/1.0.1) (2014-05-19)
757
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/0.1...1.0.1)
758
+
759
+
760
+
761
+
762
+
763
+ ## [0.1](https://github.com/skywinder/ActionSheetPicker-3.0/tree/0.1) (2012-05-11)
764
+ [Full Changelog](https://github.com/skywinder/ActionSheetPicker-3.0/compare/v0.1...0.1)
765
+
766
+
767
+
768
+
769
+
770
+ ## [v0.1](https://github.com/skywinder/ActionSheetPicker-3.0/tree/v0.1) (2012-05-11)
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*