summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-02-10 19:09:40 +1100
committerAndre Arko <andre@arko.net>2015-02-10 18:24:34 +0930
commit96293fe0a0b617030704ff18531f4e01ff60b7a5 (patch)
treea3bb4db6ca0c3a3b889615cdda37d0612d9c0540
parentdc6e577ab0c0ae37bf34b464ab55f52270b69b54 (diff)
downloadbundler-1.8.0.tar.gz
Version 1.8.0 with changelogv1.8.0
-rw-r--r--CHANGELOG.md12
-rw-r--r--lib/bundler/version.rb2
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76092855aa..974ecf9bb8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+## 1.8.0 (2015-02-10)
+
+Bugfixes:
+
+ - Gemfile `github` blocks now work (#3379, @indirect)
+
+Bugfixes from v1.7.13:
+
+ - Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
+ - Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
+ - Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
+
## 1.8.0.rc (2015-01-26)
Features:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index c680fa2605..c0cb4c86ce 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -2,5 +2,5 @@ module Bundler
# We're doing this because we might write tests that deal
# with other versions of bundler and we are unsure how to
# handle this better.
- VERSION = "1.8.0.rc" unless defined?(::Bundler::VERSION)
+ VERSION = "1.8.0" unless defined?(::Bundler::VERSION)
end