Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--README.md2
-rw-r--r--lib/bootstrap/version.rb2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5e2c671..9249fc3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,11 @@ The changelog only includes changes specific to the RubyGem.
The Bootstrap framework changes can be found in [the Releases section of twbs/bootstrap](https://github.com/twbs/bootstrap/releases).
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release of Bootstrap.
+# 4.0.0.beta2.1
+
+Fixes an extraneous `sourceMappingURL` in `bootstrap.js`.
+[#124](https://github.com/twbs/bootstrap-rubygem/issues/124)
+
# 4.0.0.beta2
Compass is no longer supported. Minimum required Sass version is now v3.5.2.
diff --git a/README.md b/README.md
index ce0e60f..0d01ee7 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Please see the appropriate guide for your environment of choice:
Add `bootstrap` to your Gemfile:
```ruby
-gem 'bootstrap', '~> 4.0.0.beta2'
+gem 'bootstrap', '~> 4.0.0.beta2.1'
```
Ensure that `sprockets-rails` is at least v2.3.2.
diff --git a/lib/bootstrap/version.rb b/lib/bootstrap/version.rb
index e49fbd4..d398a2e 100644
--- a/lib/bootstrap/version.rb
+++ b/lib/bootstrap/version.rb
@@ -1,4 +1,4 @@
module Bootstrap
- VERSION = '4.0.0.beta2'
+ VERSION = '4.0.0.beta2.1'
BOOTSTRAP_SHA = 'fc94de5b8b5b329a298eeeb76174b146ff17af2d'
end