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 22:58:35 -0800
commit39e7f6eafa44546e1cb207aee37d496147ba12a8 (patch)
treeb70ef882a10777823956129eedeb5c105d9aa244
parent8c69501e77dbfabe5be2bd49505c40fae705de04 (diff)
downloadbundler-unsupported_sources.tar.gz
Version 1.8.0.sources with changelogunsupported_sources
-rw-r--r--CHANGELOG.md31
-rw-r--r--lib/bundler/version.rb2
2 files changed, 27 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6f1a0b7596..c12a5c47f6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,16 +1,37 @@
-## 1.8.0 (unreleased)
+## 1.8.0.sources (unreleased)
-Features:
+Unsupported features:
- add support for SVN sources (@msnexploder)
+ - add support for private S3 sources (@tryba)
+
+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)
- - add support for private S3 sources (@tryba)
- 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..60ea0950a5 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.sources" unless defined?(::Bundler::VERSION)
end