summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-01-26 00:18:38 -0800
committerAndre Arko <andre@arko.net>2015-01-26 00:18:38 -0800
commita9e047270adcbe7c0399e5553bb3be48b27f8e64 (patch)
tree45fc8fd80ec7ddc0650e7a3a1a7d8c456c4cd8b2
parente07aee40569b95fbc8ae34ba85b241e6f3e1dd81 (diff)
downloadbundler-1.8.0.pre.tar.gz
Version 1.8.0.pre with changelogv1.8.0.pre
-rw-r--r--CHANGELOG.md24
-rw-r--r--lib/bundler/version.rb2
2 files changed, 22 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fecaeaa84f..f0b46b8b7e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,32 @@
-## 1.8.0 (unreleased)
+## 1.8.0.pre (2015-01-26)
Features:
- add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
- - adds a `--no-install` flag to `bundle package`
+ - adds a `--no-install` flag to `bundle package` (@d-reinhold)
+ - add `bundle config auto_install true` to install automatically (@smashwilson)
- add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
- prevent whitespace in gem declarations with clear messaging (@benlakey)
- tries to find a `bundler-<command>` executable on your path for non-bundler commands (@andremedeiros)
- tries to find `gems.rb` and it's new counterpart, `gems.locked` (@andremedeiros)
- - Change the initial version of new gems from `0.0.1` to `0.1.0` (@petedmarsh)
+ - change the initial version of new gems from `0.0.1` to `0.1.0` (@petedmarsh)
+ - add `package --all-platforms` to cache gems for each known platform (@ccutrer)
+ - speed up `exec` when running commands on the $PATH (@kirs)
+ - add gem code of conduct file and option (@kirs)
+ - add config settings for gem license and tests (@kirs)
+ - add `bin/setup` and `bin/console` to new gems (@indirect)
+ - include configured user-agent in network requests (@indirect)
+ - support `github`, `gist`, and `bitbucket` options on git gems (@indirect)
+ - add `package --cache-path` and `config cache_path` for cache location (@jnraine)
+ - allow `config` to work even when a Gemfile is not present (@dholdren)
+ - add `config gemfile /path` for other Gemfile locations (@dholdren)
+
+Bugfixes:
+
+ - reduce memory usage with threaded parallel workers (@Who828)
+ - support read-only git gems (@pmahoney)
+ - various resolver performance improvements (@dubek)
+ - untaint git gem paths for Rubygems compatibility (@tdtds)
Documentation:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index a4cb873e32..120c593259 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.7.12" unless defined?(::Bundler::VERSION)
+ VERSION = "1.8.0.pre" unless defined?(::Bundler::VERSION)
end