meta_project 0.4.11 → 0.4.12

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