meta_project 0.4.12 → 0.4.13

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.
Files changed (48) hide show
  1. data/CHANGES +283 -277
  2. data/MIT-LICENSE +21 -21
  3. data/README +130 -126
  4. data/Rakefile +152 -152
  5. data/doc/base_attrs.rdoc +2 -2
  6. data/lib/meta_project.rb +11 -11
  7. data/lib/meta_project/core_ext/open_uri.rb +22 -22
  8. data/lib/meta_project/core_ext/pathname.rb +36 -36
  9. data/lib/meta_project/core_ext/string.rb +4 -4
  10. data/lib/meta_project/http/multipart.rb +31 -31
  11. data/lib/meta_project/patois/parser.rb +98 -98
  12. data/lib/meta_project/project.rb +4 -4
  13. data/lib/meta_project/project/base.rb +8 -8
  14. data/lib/meta_project/project/codehaus.rb +1 -1
  15. data/lib/meta_project/project/codehaus/codehaus_project_svn.rb +30 -30
  16. data/lib/meta_project/project/trac.rb +1 -1
  17. data/lib/meta_project/project/trac/trac_project.rb +53 -53
  18. data/lib/meta_project/project/xforge.rb +5 -5
  19. data/lib/meta_project/project/xforge/ruby_forge.rb +46 -46
  20. data/lib/meta_project/project/xforge/session.rb +177 -177
  21. data/lib/meta_project/project/xforge/source_forge.rb +49 -49
  22. data/lib/meta_project/project/xforge/xfile.rb +44 -44
  23. data/lib/meta_project/project/xforge/xforge_base.rb +81 -81
  24. data/lib/meta_project/project_analyzer.rb +35 -35
  25. data/lib/meta_project/release/freshmeat.rb +267 -267
  26. data/lib/meta_project/release/raa.rb +572 -572
  27. data/lib/meta_project/scm_web.rb +1 -1
  28. data/lib/meta_project/scm_web/browser.rb +111 -111
  29. data/lib/meta_project/scm_web/pathname.rb +88 -88
  30. data/lib/meta_project/tracker.rb +6 -6
  31. data/lib/meta_project/tracker/base.rb +23 -23
  32. data/lib/meta_project/tracker/digit_issues.rb +33 -33
  33. data/lib/meta_project/tracker/issue.rb +56 -56
  34. data/lib/meta_project/tracker/jira.rb +2 -2
  35. data/lib/meta_project/tracker/jira/jira_issues.rb +34 -34
  36. data/lib/meta_project/tracker/jira/jira_tracker.rb +148 -123
  37. data/lib/meta_project/tracker/trac.rb +1 -1
  38. data/lib/meta_project/tracker/trac/trac_tracker.rb +32 -32
  39. data/lib/meta_project/tracker/xforge.rb +3 -3
  40. data/lib/meta_project/tracker/xforge/ruby_forge_tracker.rb +17 -17
  41. data/lib/meta_project/tracker/xforge/source_forge_tracker.rb +17 -17
  42. data/lib/meta_project/tracker/xforge/xforge_tracker.rb +190 -190
  43. data/lib/meta_project/version_parser.rb +52 -52
  44. data/lib/rake/contrib/xforge.rb +3 -3
  45. data/lib/rake/contrib/xforge/base.rb +64 -64
  46. data/lib/rake/contrib/xforge/news_publisher.rb +97 -97
  47. data/lib/rake/contrib/xforge/release.rb +134 -134
  48. metadata +4 -3
data/CHANGES CHANGED
@@ -1,277 +1,283 @@
1
- = MetaProject Changelog
2
-
3
- == Version 0.4.12
4
-
5
- This releaxe improves the issue tracking API
6
-
7
- * Removed reference to nonexistant e in JiraTracker.
8
- * Add support for creation of RubyForge issues.
9
- * Add support for closing of RubyForge issues.
10
-
11
- == Version 0.4.11
12
-
13
- This release fixes several bugs in the XForge release code and improves documentation.
14
-
15
- * Fixed #2398: Rake::XForge::Release doesn't allow manual setting of release_notes or release_changes
16
- * Fixed #2399: Net::HTTPRequestURITooLong 414 readbody=true
17
- * Fixed #2400: Project release always selects the *first* package
18
-
19
- == Version 0.4.10
20
-
21
- This version fixes some bugs in the JIRA and SourceForge APIs.
22
-
23
- * Made error reporting better for JIRA exceptions.
24
- * Avoid exception rippling through when login credentials are not specified.
25
- * Made SourceForge tracker API more robust.
26
-
27
- == Version 0.4.9
28
-
29
- This release makes the validation of Browser objects more robust.
30
-
31
- * Moved Browser spec attributes to validating setters.
32
-
33
- == Version 0.4.8
34
-
35
- This release fixes some bugs with XForge (RubyForge) Rake tasks.
36
-
37
- * Documented how to avoid parsing of CHANGES.
38
- * Fixed a bug in interactive modus for user name and password prompts.
39
- * Fixed a bug in retrieval of package_id when releasing to RubyForge.
40
- * Fixed bug in open-uri extension that clobbered HTTP request headers failing login.
41
- * Fixed a bug in the determination of Trac version.
42
-
43
- == Version 0.4.7
44
-
45
- This release makes HTTP access more robust and improves the Pathname API.
46
-
47
- * More robust HTTP GET with retries and better error messages.
48
- * Added Pathname.basename and Pathname.parent
49
- * Small improvements to ScmWeb API.
50
- * More robust detection of XForge package_id.
51
-
52
- == Version 0.4.6
53
-
54
- This release updates documentaion, adds iteration support to Pathname and fixes some minor bugs.
55
-
56
- * Updated README.
57
- * Added PathnameIterator mixin that can be used to iterate over Pathname and MetaProject::ScmWeb::Pathname to
58
- do e.g. egrep or other operations.
59
- * Fixed a bug in Project::RubyForge that prevented group_id from being recognised for some projects.
60
- * Made the scm_web test for rubyforge be less fragile by storing the compared local file locally.
61
-
62
- == Version 0.4.5
63
-
64
- This version improves the MetaProject::ScmWeb::Pathname support, allowing online contents in scm web interfaces to be navigated and read in a similar fashion to the standard library's Pathname class.
65
-
66
- * Better support for Pathname. children, directory? and open now supported.
67
- * Fixed some bugs for JIRA support.
68
- * Improved Pathname settings for Codehaus, SourceForge, Trac and RubyForge.
69
- * Pathname now takes a revision argument in the constructor.
70
- * Moved ScmWeb to ScmWeb::Browser.
71
- * Added a subset of the Ruby stlib Pathname API to ScmWeb.
72
- * Added a String extension for dealing with trailing slashes in URLs.
73
-
74
- == Version 0.4.4
75
-
76
- This release introduces a new Domain Specific Language (DSL) for SCM commit messages similar to Trac's post-commit hook for updating tickets.
77
- Patois is supported in a tracker-agnostic way (although it's only half implemented for JIRA only ATM).
78
- There is also initial support for FreshMeat and RAA thanks to Thomas Leitner.
79
-
80
- * Added support for Patois parsing (See RubyDoc).
81
- * Gave the Patois DSL its name.
82
- * Improved the Tracker::Issue API to be more OO and uniform across trackers.
83
- * Adds support for FreshMeat and RAA (Fixes #2323). This is not aligned with the rest of the MetaProject API yet.
84
-
85
- == Version 0.4.3
86
-
87
- This release fixes some bugs and implements some new issue tracker features.
88
-
89
- * Aligned properties between TracTracker and JiraTracker with ProjectAnalyzer.
90
- * Stripping leading and trailing whitespace from issue summaries (SF seems to have changed).
91
- * Added name to XForge projects.
92
- * Added create_issue to JiraTracker.
93
-
94
- == Version 0.4.2
95
-
96
- This is a minor release that accommodates fos some changes needed by DamageControl.
97
-
98
- * Made tracker constructors empty so they can be used from DamageControl.
99
- * Made ScmWeb constructor empty so it can be used from DamageControl.
100
- * Made JiraTracker look for user/password in environment variables and log error if not defined.
101
-
102
- == Version 0.4.1
103
-
104
- This version renames xforge to meta_project. This is because the scope of this project
105
- has grown beyond SourceForge clones.
106
-
107
- * renamed gem
108
-
109
- == Version 0.4.0
110
-
111
- This release of XForge completely reorganises classes and modules into a more
112
- coherent API for accessing projects' issue trackers, scms and scm browsers. The toplevel
113
- namespace is now MetaProject.
114
-
115
- The new ScmWeb class now supports *any* scm browser through its flexible
116
- configuration options.
117
-
118
- In order to easily gather information from various hosting services, XForge comes with a ProjectAnalyzer
119
- class, which given an scm browser URL will discover the associated issue tracker, preconfigured scm_web,
120
- project home page and of course, an RSCM object.
121
-
122
- Supported project sources:
123
- - RubyForge.org
124
- - SourceForge.org
125
- - Codehaus.org
126
- - Trac projects
127
-
128
- Supported issue trackers:
129
- - RubyForge.org
130
- - SourceForge.org
131
- - JIRA
132
- - Trac projects
133
-
134
- Supported SCM browsers:
135
- - *Any* scm browser through its flexible configuration options.
136
-
137
- Supported SCMs:
138
- - Any SCM implemented in the <a href="http://rscm.rubyforge.org/">RSCM</a> project.
139
-
140
- The QRS Rake tasks for releasing files and news on RubyForge has changed slightly. Please refer to XForge's
141
- own Rakefile for details.
142
-
143
- == Version 0.3.5
144
-
145
- This is a bugfix release that fixes some bugs in ViewCvs.
146
-
147
- * Changed the way the server path of RSCM::Cvs objects are initialised from ViewCvs to fix a subtle bug.
148
- * Factored out generic file_uri to ScmWeb::FileUri.
149
- * Fixed bug in RubyForge's recognition of modules in ViewCvs.
150
-
151
- == Version 0.3.4
152
-
153
- This release simplifies ViewCvs configuration
154
-
155
- * Removed project_unix_name from ViewCvs' uri_specs
156
- * Tuned how XForge::Project is YAMLed, to avoid backreferences
157
- * Renamed some Tracker classes to be prefixed with the module name. This was to ease DamageControl integration.
158
-
159
- == Version 0.3.3
160
-
161
- This is a minor refactoring release
162
-
163
- * Decoupled Trac::Project from RSCM::Subversion
164
- * Made Tracker::ViewCvs use Strings as values instead of symbols (to make it easier to post from a web form)
165
-
166
- == Version 0.3.2
167
-
168
- This release adds more support for other issue trackers ans scm browsers.
169
-
170
- * Fixed #2242
171
- * Added a lot of tracker and scm_web classes (factored out from DamageControl)
172
- * Decoupled view_cvs from rubyforge/sourceforge
173
-
174
- == Version 0.3.1
175
-
176
- This XForge release adds initial support for Trac and JIRA.
177
-
178
- * Added support for formatting of text containing issue identifiers
179
- * Refactored trackers into other modules
180
- * Added support for JIRA issue tracker
181
- * Added support for Trac's issue tracker
182
- * Added support for diff URLs on SourceForge and RubyForge
183
-
184
- == Version 0.2.1
185
-
186
- This XForge release adds support for tracker meta info
187
-
188
- * Added Project.tracker method
189
- * Require Rake tasks from toplevel xforge.rb
190
-
191
- == Version 0.2.0
192
-
193
- First stable release of the XForge QRS.
194
-
195
- * Renamed Project.name to Project.unix_name
196
- * Wrote better documentation
197
- * Included CVS tagging in the Rakefile
198
-
199
- == Version 0.1.9
200
-
201
- This release adds more functionality for news publishing
202
-
203
- * Added Session.publish_news
204
-
205
- == Version 0.1.8
206
-
207
- This release adds more functionality for RubyForge projects' home page
208
-
209
- * Added Project.home_page_uri and Project.project_uri
210
-
211
- == Version 0.1.7
212
-
213
- Updated README
214
-
215
- == Version 0.1.6
216
-
217
- This release of XForge improves scm browser capabilities.
218
-
219
- * Added ViewCvs.uri(path, options) method to get an URI to a file on the web
220
- * Added an rspec suite
221
- * Added logic for parsing top-level CVS modules
222
- * Made Rake Release task use RubyForge by default
223
-
224
- == Version 0.1.5
225
-
226
- This release of XForge adds functionality to access scm browsers (ViewCvs) and RSCM objects.
227
-
228
- * Refactored classes into separate files
229
- * Added Project.scm_web to access a ViewCvs object
230
- * Added ViewCvs.scms to access an array of RSCM::Cvs
231
-
232
- == Version 0.1.4
233
-
234
- This is the first functional release of XForge, a Ruby library and Rake task to automate release of
235
- files on RubyForge and other SourceForge clones.
236
-
237
- It's as simple as this:
238
-
239
- require 'xforge'
240
-
241
- desc "Create a new release on RubyForge"
242
- task :publish_files => [:gem] do
243
- release_files = FileList[
244
- "pkg/#{PKG_FILE_NAME}.gem"
245
- ]
246
-
247
- Rake::XForge::Release.new(PKG_NAME) do |release|
248
- # Never hardcode user name and password in the Rakefile!
249
- release.user_name = ENV['RUBYFORGE_USER']
250
- release.password = ENV['RUBYFORGE_PASSWORD']
251
- release.files = release_files.to_a
252
- release.release_name = "XForge #{PKG_VERSION}"
253
- # The rest of the options are defaults (among others, release_notes and release_changes, parsed from CHANGES)
254
- end
255
- end
256
-
257
- * Added logic for parsing of CHANGES files and include it in the release notes when publishing.
258
- * Wrote some proper release notes for once.
259
-
260
- == Version 0.1.3
261
-
262
- * Added logic for parsing of CHANGES files and include it in the release notes when publishing.
263
-
264
- == Version 0.1.2
265
-
266
- This release is a minor release with fixes in the Rake script.
267
-
268
- * Fixed RDoc for gem
269
- * Cleaned up documentation
270
-
271
- == Version 0.1.1
272
-
273
- * Rakefile: Don't include old gems in release.
274
-
275
- == Version 0.1
276
-
277
- * Added support for file releases
1
+ = MetaProject Changelog
2
+
3
+ == Version 0.4.13
4
+
5
+ Bugfix release
6
+
7
+ * Removed some irritating debugging
8
+
9
+ == Version 0.4.12
10
+
11
+ This release improves the issue tracking API
12
+
13
+ * Removed reference to nonexistant e in JiraTracker.
14
+ * Add support for creation of RubyForge issues.
15
+ * Add support for closing of RubyForge issues.
16
+
17
+ == Version 0.4.11
18
+
19
+ This release fixes several bugs in the XForge release code and improves documentation.
20
+
21
+ * Fixed #2398: Rake::XForge::Release doesn't allow manual setting of release_notes or release_changes
22
+ * Fixed #2399: Net::HTTPRequestURITooLong 414 readbody=true
23
+ * Fixed #2400: Project release always selects the *first* package
24
+
25
+ == Version 0.4.10
26
+
27
+ This version fixes some bugs in the JIRA and SourceForge APIs.
28
+
29
+ * Made error reporting better for JIRA exceptions.
30
+ * Avoid exception rippling through when login credentials are not specified.
31
+ * Made SourceForge tracker API more robust.
32
+
33
+ == Version 0.4.9
34
+
35
+ This release makes the validation of Browser objects more robust.
36
+
37
+ * Moved Browser spec attributes to validating setters.
38
+
39
+ == Version 0.4.8
40
+
41
+ This release fixes some bugs with XForge (RubyForge) Rake tasks.
42
+
43
+ * Documented how to avoid parsing of CHANGES.
44
+ * Fixed a bug in interactive modus for user name and password prompts.
45
+ * Fixed a bug in retrieval of package_id when releasing to RubyForge.
46
+ * Fixed bug in open-uri extension that clobbered HTTP request headers failing login.
47
+ * Fixed a bug in the determination of Trac version.
48
+
49
+ == Version 0.4.7
50
+
51
+ This release makes HTTP access more robust and improves the Pathname API.
52
+
53
+ * More robust HTTP GET with retries and better error messages.
54
+ * Added Pathname.basename and Pathname.parent
55
+ * Small improvements to ScmWeb API.
56
+ * More robust detection of XForge package_id.
57
+
58
+ == Version 0.4.6
59
+
60
+ This release updates documentaion, adds iteration support to Pathname and fixes some minor bugs.
61
+
62
+ * Updated README.
63
+ * Added PathnameIterator mixin that can be used to iterate over Pathname and MetaProject::ScmWeb::Pathname to
64
+ do e.g. egrep or other operations.
65
+ * Fixed a bug in Project::RubyForge that prevented group_id from being recognised for some projects.
66
+ * Made the scm_web test for rubyforge be less fragile by storing the compared local file locally.
67
+
68
+ == Version 0.4.5
69
+
70
+ This version improves the MetaProject::ScmWeb::Pathname support, allowing online contents in scm web interfaces to be navigated and read in a similar fashion to the standard library's Pathname class.
71
+
72
+ * Better support for Pathname. children, directory? and open now supported.
73
+ * Fixed some bugs for JIRA support.
74
+ * Improved Pathname settings for Codehaus, SourceForge, Trac and RubyForge.
75
+ * Pathname now takes a revision argument in the constructor.
76
+ * Moved ScmWeb to ScmWeb::Browser.
77
+ * Added a subset of the Ruby stlib Pathname API to ScmWeb.
78
+ * Added a String extension for dealing with trailing slashes in URLs.
79
+
80
+ == Version 0.4.4
81
+
82
+ This release introduces a new Domain Specific Language (DSL) for SCM commit messages similar to Trac's post-commit hook for updating tickets.
83
+ Patois is supported in a tracker-agnostic way (although it's only half implemented for JIRA only ATM).
84
+ There is also initial support for FreshMeat and RAA thanks to Thomas Leitner.
85
+
86
+ * Added support for Patois parsing (See RubyDoc).
87
+ * Gave the Patois DSL its name.
88
+ * Improved the Tracker::Issue API to be more OO and uniform across trackers.
89
+ * Adds support for FreshMeat and RAA (Fixes #2323). This is not aligned with the rest of the MetaProject API yet.
90
+
91
+ == Version 0.4.3
92
+
93
+ This release fixes some bugs and implements some new issue tracker features.
94
+
95
+ * Aligned properties between TracTracker and JiraTracker with ProjectAnalyzer.
96
+ * Stripping leading and trailing whitespace from issue summaries (SF seems to have changed).
97
+ * Added name to XForge projects.
98
+ * Added create_issue to JiraTracker.
99
+
100
+ == Version 0.4.2
101
+
102
+ This is a minor release that accommodates fos some changes needed by DamageControl.
103
+
104
+ * Made tracker constructors empty so they can be used from DamageControl.
105
+ * Made ScmWeb constructor empty so it can be used from DamageControl.
106
+ * Made JiraTracker look for user/password in environment variables and log error if not defined.
107
+
108
+ == Version 0.4.1
109
+
110
+ This version renames xforge to meta_project. This is because the scope of this project
111
+ has grown beyond SourceForge clones.
112
+
113
+ * renamed gem
114
+
115
+ == Version 0.4.0
116
+
117
+ This release of XForge completely reorganises classes and modules into a more
118
+ coherent API for accessing projects' issue trackers, scms and scm browsers. The toplevel
119
+ namespace is now MetaProject.
120
+
121
+ The new ScmWeb class now supports *any* scm browser through its flexible
122
+ configuration options.
123
+
124
+ In order to easily gather information from various hosting services, XForge comes with a ProjectAnalyzer
125
+ class, which given an scm browser URL will discover the associated issue tracker, preconfigured scm_web,
126
+ project home page and of course, an RSCM object.
127
+
128
+ Supported project sources:
129
+ - RubyForge.org
130
+ - SourceForge.org
131
+ - Codehaus.org
132
+ - Trac projects
133
+
134
+ Supported issue trackers:
135
+ - RubyForge.org
136
+ - SourceForge.org
137
+ - JIRA
138
+ - Trac projects
139
+
140
+ Supported SCM browsers:
141
+ - *Any* scm browser through its flexible configuration options.
142
+
143
+ Supported SCMs:
144
+ - Any SCM implemented in the <a href="http://rscm.rubyforge.org/">RSCM</a> project.
145
+
146
+ The QRS Rake tasks for releasing files and news on RubyForge has changed slightly. Please refer to XForge's
147
+ own Rakefile for details.
148
+
149
+ == Version 0.3.5
150
+
151
+ This is a bugfix release that fixes some bugs in ViewCvs.
152
+
153
+ * Changed the way the server path of RSCM::Cvs objects are initialised from ViewCvs to fix a subtle bug.
154
+ * Factored out generic file_uri to ScmWeb::FileUri.
155
+ * Fixed bug in RubyForge's recognition of modules in ViewCvs.
156
+
157
+ == Version 0.3.4
158
+
159
+ This release simplifies ViewCvs configuration
160
+
161
+ * Removed project_unix_name from ViewCvs' uri_specs
162
+ * Tuned how XForge::Project is YAMLed, to avoid backreferences
163
+ * Renamed some Tracker classes to be prefixed with the module name. This was to ease DamageControl integration.
164
+
165
+ == Version 0.3.3
166
+
167
+ This is a minor refactoring release
168
+
169
+ * Decoupled Trac::Project from RSCM::Subversion
170
+ * Made Tracker::ViewCvs use Strings as values instead of symbols (to make it easier to post from a web form)
171
+
172
+ == Version 0.3.2
173
+
174
+ This release adds more support for other issue trackers ans scm browsers.
175
+
176
+ * Fixed #2242
177
+ * Added a lot of tracker and scm_web classes (factored out from DamageControl)
178
+ * Decoupled view_cvs from rubyforge/sourceforge
179
+
180
+ == Version 0.3.1
181
+
182
+ This XForge release adds initial support for Trac and JIRA.
183
+
184
+ * Added support for formatting of text containing issue identifiers
185
+ * Refactored trackers into other modules
186
+ * Added support for JIRA issue tracker
187
+ * Added support for Trac's issue tracker
188
+ * Added support for diff URLs on SourceForge and RubyForge
189
+
190
+ == Version 0.2.1
191
+
192
+ This XForge release adds support for tracker meta info
193
+
194
+ * Added Project.tracker method
195
+ * Require Rake tasks from toplevel xforge.rb
196
+
197
+ == Version 0.2.0
198
+
199
+ First stable release of the XForge QRS.
200
+
201
+ * Renamed Project.name to Project.unix_name
202
+ * Wrote better documentation
203
+ * Included CVS tagging in the Rakefile
204
+
205
+ == Version 0.1.9
206
+
207
+ This release adds more functionality for news publishing
208
+
209
+ * Added Session.publish_news
210
+
211
+ == Version 0.1.8
212
+
213
+ This release adds more functionality for RubyForge projects' home page
214
+
215
+ * Added Project.home_page_uri and Project.project_uri
216
+
217
+ == Version 0.1.7
218
+
219
+ Updated README
220
+
221
+ == Version 0.1.6
222
+
223
+ This release of XForge improves scm browser capabilities.
224
+
225
+ * Added ViewCvs.uri(path, options) method to get an URI to a file on the web
226
+ * Added an rspec suite
227
+ * Added logic for parsing top-level CVS modules
228
+ * Made Rake Release task use RubyForge by default
229
+
230
+ == Version 0.1.5
231
+
232
+ This release of XForge adds functionality to access scm browsers (ViewCvs) and RSCM objects.
233
+
234
+ * Refactored classes into separate files
235
+ * Added Project.scm_web to access a ViewCvs object
236
+ * Added ViewCvs.scms to access an array of RSCM::Cvs
237
+
238
+ == Version 0.1.4
239
+
240
+ This is the first functional release of XForge, a Ruby library and Rake task to automate release of
241
+ files on RubyForge and other SourceForge clones.
242
+
243
+ It's as simple as this:
244
+
245
+ require 'xforge'
246
+
247
+ desc "Create a new release on RubyForge"
248
+ task :publish_files => [:gem] do
249
+ release_files = FileList[
250
+ "pkg/#{PKG_FILE_NAME}.gem"
251
+ ]
252
+
253
+ Rake::XForge::Release.new(PKG_NAME) do |release|
254
+ # Never hardcode user name and password in the Rakefile!
255
+ release.user_name = ENV['RUBYFORGE_USER']
256
+ release.password = ENV['RUBYFORGE_PASSWORD']
257
+ release.files = release_files.to_a
258
+ release.release_name = "XForge #{PKG_VERSION}"
259
+ # The rest of the options are defaults (among others, release_notes and release_changes, parsed from CHANGES)
260
+ end
261
+ end
262
+
263
+ * Added logic for parsing of CHANGES files and include it in the release notes when publishing.
264
+ * Wrote some proper release notes for once.
265
+
266
+ == Version 0.1.3
267
+
268
+ * Added logic for parsing of CHANGES files and include it in the release notes when publishing.
269
+
270
+ == Version 0.1.2
271
+
272
+ This release is a minor release with fixes in the Rake script.
273
+
274
+ * Fixed RDoc for gem
275
+ * Cleaned up documentation
276
+
277
+ == Version 0.1.1
278
+
279
+ * Rakefile: Don't include old gems in release.
280
+
281
+ == Version 0.1
282
+
283
+ * Added support for file releases