From 029b9f960a36ce4a540cb4d4f570a9696e835fcd Mon Sep 17 00:00:00 2001 From: Roy Liu Date: Thu, 28 May 2015 02:17:37 -0400 Subject: [PATCH] Upgrade the gem to 0.9.7 --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/requirejs/rails/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e54c83d9..bbb0ead3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## requirejs-rails changelog +### v0.9.7 + +- Fix a corner case where modules could appear in the build config's `paths`. +- Fix regressions introduce in v0.9.6. +- Allow protocol relative urls for CDNs in the build config's `paths` (credit @remybach). + ### v0.9.6 - Update `require.js` and `r.js` to `2.1.17`, and `almond.js` to `0.3.1`. diff --git a/Gemfile.lock b/Gemfile.lock index 8d10078f..1700dc58 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - requirejs-rails (0.9.6) + requirejs-rails (0.9.7) railties (>= 3.1.1) GEM diff --git a/lib/requirejs/rails/version.rb b/lib/requirejs/rails/version.rb index 3532502c..5d7e320d 100644 --- a/lib/requirejs/rails/version.rb +++ b/lib/requirejs/rails/version.rb @@ -1,6 +1,6 @@ module Requirejs module Rails - Version = "0.9.6" + Version = "0.9.7" LibVersion = "2.1.17" end end