diff --git a/History.txt b/History.txt index 2a0881e1..cb9f237c 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +== Edge + * Bug Fixes + * Fix Rakefile 'release' task (tag pushing was missing origin) + == 0.6.1 * Bug Fixes * Fix Markdown Pygments prefix and suffix (#178) diff --git a/Rakefile b/Rakefile index ce61601e..11551f90 100644 --- a/Rakefile +++ b/Rakefile @@ -120,7 +120,7 @@ task :release => :build do sh "git commit --allow-empty -a -m 'Release #{version}'" sh "git tag v#{version}" sh "git push origin master" - sh "git push v#{version}" + sh "git push origin v#{version}" sh "gem push pkg/#{name}-#{version}.gem" end