Skip to content

Commit

Permalink
Start for 0.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
glejeune committed Jul 19, 2010
1 parent 0c72e07 commit 9dbc3fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,11 @@ namespace :gemcutter do
task :push => [:package] do
unless Rubygems.status
sh %{gem push pkg/#{PKG_NAME}-#{PKG_VERS}.gem}, :verbose => true
sh %{git commit -am "Tag #{PKG_VERS}"}, :verbose => true
begin
sh %{git commit -am "Tag #{PKG_VERS}"}, :verbose => true
rescue => e
puts "Nothing to commit !"
end
sh %{git tag #{PKG_VERS}}, :verbose => true
sh %{git push origin master --tags}
else
Expand Down
2 changes: 1 addition & 1 deletion lib/graphviz/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# C => cluster
#
module Constants
RGV_VERSION = "0.9.15"
RGV_VERSION = "0.9.16"

## Const: Output formats
FORMATS = [
Expand Down

0 comments on commit 9dbc3fe

Please sign in to comment.