visionmedia-release 0.3.0 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.rdoc +8 -0
  2. data/Todo.rdoc +3 -0
  3. data/bin/re +3 -3
  4. data/release.gemspec +1 -1
  5. metadata +1 -1
@@ -1,4 +1,12 @@
1
1
 
2
+ === 0.3.2 / 2009-03-14
3
+
4
+ * Github, build me!
5
+
6
+ === 0.3.1 / 2009-03-14
7
+
8
+ * Added replacement of <Commander::Command::Options in configured releases
9
+
2
10
  === 0.3.0 / 2009-03-14
3
11
 
4
12
  * Added :bump as the default command
data/Todo.rdoc CHANGED
@@ -1,10 +1,13 @@
1
1
 
2
2
  == Major:
3
3
 
4
+ * Adjust gh-pages with screencasts / redo samples without bump ... and better samples with config etc
4
5
  * Add ability to do a graceful abort
5
6
  * Add option to prevent -a in commit command
6
7
  * Better specs
7
8
  * When exception is raised revert all alterations made to that point
9
+ * Support init of first tag
10
+ * Dont use .re
8
11
  * Refactor
9
12
 
10
13
  == Minor:
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.0'
8
+ program :version, '0.3.2'
9
9
  program :description, 'Github release management'
10
10
 
11
11
  default_command :bump
@@ -63,7 +63,7 @@ def bump_options c
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
65
  c.option '-t', '--trace', 'Output callstack when an exception is raised'
66
- c.option '-F', '--format FORMAT', 'Valid git log --pretty format. Defaults to \'%s\''
66
+ c.option '-F', '--format FORMAT', 'Valid git log --pretty format. Defaults to "format:\'* %s\'"'
67
67
  c.option '-M', '--verify-master', 'Verify that master is the current branch before releasing'
68
68
  end
69
69
 
@@ -239,7 +239,7 @@ command :config do |c|
239
239
  log "configuration '#{name}' removed"
240
240
  when 'show'
241
241
  load_config.each do |name, config|
242
- say '%14s: %s' % [name, config.inspect.sub('#<OpenStruct ', '').sub('>', '')]
242
+ say '%14s: %s' % [name, config.inspect.sub('#<Commander::Command::Options ', '').sub('>', '')]
243
243
  end
244
244
  else
245
245
  raise 'invalid operation'
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{release}
5
- s.version = "0.3.0"
5
+ s.version = "0.3.2"
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.0
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk