summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md19
-rw-r--r--lib/bundler/version.rb2
2 files changed, 16 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 974ecf9bb8..459f8051a0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,25 @@
+## 1.8.1 (2015-02-13)
+
+Bugfixes:
+
+ - synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
+ - set gemspec bindir correctly (#3392, @tmoore)
+ - request lockfile deletion when it is malformed (#3396, @indirect)
+ - explain problem when mirror config is missing (#3386, @indirect)
+ - explain problem when caching causes permission error (#3390, @indirect)
+ - normalize URLs in config keys (#3391, @indirect)
+
## 1.8.0 (2015-02-10)
Bugfixes:
- - Gemfile `github` blocks now work (#3379, @indirect)
+ - 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)
+ - 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)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index c0cb4c86ce..f25ceb490a 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" unless defined?(::Bundler::VERSION)
+ VERSION = "1.8.1" unless defined?(::Bundler::VERSION)
end