hoe-git 1.1.0 → 1.1.1

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 (4) hide show
  1. data/CHANGELOG.rdoc +5 -0
  2. data/README.rdoc +14 -7
  3. data/lib/hoe/git.rb +5 -4
  4. metadata +5 -4
@@ -1,3 +1,8 @@
1
+ === 1.1.1 / 2009-06-23
2
+
3
+ * Use git_release_tag_prefix more consistently, handle unreleased case.
4
+ * Make the README a bit better.
5
+
1
6
  === 1.1.0 / 2009-06-23
2
7
 
3
8
  * Allow configurable release tag prefixes.
@@ -5,18 +5,25 @@
5
5
  == Description
6
6
 
7
7
  A Hoe plugin for tighter Git integration. This plugin provides a
8
- <tt>git:tag</tt> task to automate release tagging and pushing, and I
9
- expect it'll learn a few more tricks in the future.
8
+ git:tag task to automate release tagging and pushing, a git:changelog
9
+ task to make release notes easier, and I expect it'll learn a few more
10
+ tricks in the future.
10
11
 
11
- See the Hoe::Git module for a few configuration options.
12
+ See the Hoe::Git module for more docs and a few configuration options.
12
13
 
13
14
  == Examples
14
15
 
15
- # in your Rakefile
16
- Hoe.plugin :git
16
+ # in your Rakefile
17
+ Hoe.plugin :git
17
18
 
18
- # in your shell
19
- $ rake release VERSION=1.0.0
19
+ # in your shell
20
+ $ rake git:changelog
21
+
22
+ This will take all the commits since your last release and format 'em
23
+ nicely for an RDoc changelog. Commits that weren't made by a developer
24
+ will be attributed.
25
+
26
+ $ rake release VERSION=1.0.0
20
27
 
21
28
  In addition to the normal RubyForge release process, this will create
22
29
  and push a <tt>v1.0.0</tt> tag.
@@ -12,7 +12,7 @@
12
12
  # attributed.
13
13
 
14
14
  module Hoe::Git
15
- VERSION = "1.1.0"
15
+ VERSION = "1.1.1"
16
16
 
17
17
  ##
18
18
  # Optional: What do you want at the front of your release tags?
@@ -34,9 +34,10 @@ module Hoe::Git
34
34
  def define_git_tasks
35
35
  desc "Print the current changelog."
36
36
  task "git:changelog" do
37
- tags = `git tag -l 'v*'`.split "\n"
38
- tag = ENV["FROM"] || tags.last
39
- cmd = "git log #{tag}.. '--format=tformat:%s|||%cN|||%cE'"
37
+ tags = `git tag -l '#{git_release_tag_prefix}*'`.split "\n"
38
+ tag = ENV["FROM"] || tags.last
39
+ range = [tag, "HEAD"].compact.join ".."
40
+ cmd = "git log #{range} '--format=tformat:%s|||%cN|||%cE'"
40
41
 
41
42
  changes = `#{cmd}`.split("\n").map do |line|
42
43
  msg, author, email = line.split("|||").map { |e| e.empty? ? nil : e }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-git
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Barnette
@@ -34,10 +34,11 @@ dependencies:
34
34
  version:
35
35
  description: |-
36
36
  A Hoe plugin for tighter Git integration. This plugin provides a
37
- <tt>git:tag</tt> task to automate release tagging and pushing, and I
38
- expect it'll learn a few more tricks in the future.
37
+ git:tag task to automate release tagging and pushing, a git:changelog
38
+ task to make release notes easier, and I expect it'll learn a few more
39
+ tricks in the future.
39
40
 
40
- See the Hoe::Git module for a few configuration options.
41
+ See the Hoe::Git module for more docs and a few configuration options.
41
42
  email:
42
43
  - jbarnette@rubyforge.org
43
44
  executables: []