Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mojombo committed Aug 12, 2010
1 parent 541b58a commit 2a905ce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
@@ -1,3 +1,7 @@
# 1.0.1 / 2010-08-12

* Force Grit dep to 2.1 or higher.

# 1.0.0 / 2010-08-12

* Open Source Birthday!
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -95,7 +95,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

Expand Down
4 changes: 2 additions & 2 deletions gollum.gemspec
Expand Up @@ -4,7 +4,7 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'

s.name = 'gollum'
s.version = '1.0.0'
s.version = '1.0.1'
s.date = '2010-08-12'
s.rubyforge_project = 'gollum'

Expand All @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md LICENSE]

s.add_dependency('grit', "~> 2.0")
s.add_dependency('grit', "~> 2.1")
s.add_dependency('github-markup', [">= 0.4.0", "< 1.0.0"])
s.add_dependency('albino', "~> 1.0")
s.add_dependency('sinatra', "~> 1.0")
Expand Down
2 changes: 1 addition & 1 deletion lib/gollum.rb
Expand Up @@ -15,7 +15,7 @@
require 'gollum/albino'

module Gollum
VERSION = '1.0.0'
VERSION = '1.0.1'

SANITIZATION_OPTIONS = {
:elements => [
Expand Down

0 comments on commit 2a905ce

Please sign in to comment.