summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-11-13 01:08:53 -0600
committerAndre Arko <andre@arko.net>2010-11-13 01:15:14 -0600
commit4d4fa00f2fd1c6ba420eb55cff884956b5aad68e (patch)
treea229bcddf5255014a2e89b711a2bf137563d6035
parent2da8338914224935464a003ac24f7c3695c9f71b (diff)
downloadbundler-4d4fa00f2fd1c6ba420eb55cff884956b5aad68e.tar.gz
Version 1.0.4 with changelog
-rw-r--r--CHANGELOG.md25
-rw-r--r--lib/bundler/version.rb2
2 files changed, 26 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1ab1abf953..b24ff0820b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,28 @@
+## 1.0.4 (November 12, 2010)
+
+Bugfixes:
+
+ - Expand relative :paths from Bundler.root (eg ./foogem)
+ - Allow git gems in --without groups while --frozen
+ - Allow gem :ref to be a symbol as well as a string
+ - Fix exception when Gemfile needs a newer Bundler version
+ - Explanation when the current Bundler version conflicts
+ - Explicit error message if Gemfile needs newer Bundler
+ - Ignore an empty string BUNDLE_GEMFILE
+ - Skeleton gemspec now works with older versions of git
+ - Fix shell quoting and ref fetching in GemHelper
+ - Disable colored output in --deployment
+ - Preserve line endings in lock file
+
+Features:
+
+ - Add support for 'mingw32' platform (aka RubyInstaller)
+ - Large speed increase when Gemfile.lock is already present
+ - Huge speed increase when many (100+) system gems are present
+ - Significant expansion of ISSUES, man pages, and docs site
+ - Remove Open3 from GemHelper (now it works on Windows™®©)
+ - Allow setting roles in built-in cap and vlad tasks
+
## 1.0.3 (October 15, 2010)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index e51ae0f14d..c2f4105f21 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.0.4.pre" unless defined?(::Bundler::VERSION)
+ VERSION = "1.0.4" unless defined?(::Bundler::VERSION)
end