visionmedia-release 0.3.6 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.rdoc +4 -0
  2. data/bin/re +3 -8
  3. data/release.gemspec +1 -1
  4. metadata +1 -1
@@ -1,4 +1,8 @@
1
1
 
2
+ === 0.3.7 / 2009-04-08
3
+
4
+ * Removed --trace since commander handles this now
5
+
2
6
  === 0.3.6 / 2009-04-08
3
7
 
4
8
  * Added growl notifications of success or failure
data/bin/re CHANGED
@@ -5,7 +5,7 @@ require 'commander'
5
5
  require 'yaml'
6
6
 
7
7
  program :name, 'release'
8
- program :version, '0.3.6'
8
+ program :version, '0.3.7'
9
9
  program :description, 'Github release management'
10
10
 
11
11
  default_command :bump
@@ -62,7 +62,6 @@ def bump_options c
62
62
  c.option '-R', '--no-rake', 'Disable all rake tasks'
63
63
  c.option '-H', '--history', 'Edit history in EDITOR before releasing'
64
64
  c.option '-d', '--dry-run', 'Performs a dry run, without releasing'
65
- c.option '-t', '--trace', 'Output callstack when an exception is raised'
66
65
  c.option '-F', '--format FORMAT', 'Valid git log --pretty format. Defaults to "format:\'* %s\'"'
67
66
  c.option '-M', '--verify-master', 'Verify that master is the current branch before releasing'
68
67
  end
@@ -194,12 +193,8 @@ command :bump do |c|
194
193
  end
195
194
 
196
195
  rescue Exception => e
197
- if o.trace
198
- raise
199
- else
200
- log "release failed: #{e}\n"
201
- notify_error "Release failed"
202
- end
196
+ notify_error "Release failed"
197
+ raise
203
198
  else
204
199
  notify_ok "Release #{version} complete"
205
200
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{release}
5
- s.version = "0.3.6"
5
+ s.version = "0.3.7"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["TJ Holowaychuk"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visionmedia-release
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk