From 1c1de70af744f5102490073c6e062d99f4a75043 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 11 Apr 2018 13:03:41 +0300 Subject: [PATCH 1/2] Bump version to 4.1.0 for remaining files. --- js/src/index.js | 2 +- nuget/bootstrap.nuspec | 2 +- nuget/bootstrap.sass.nuspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/src/index.js b/js/src/index.js index d29d1654df4e..b57aed640c79 100644 --- a/js/src/index.js +++ b/js/src/index.js @@ -13,7 +13,7 @@ import Util from './util' /** * -------------------------------------------------------------------------- - * Bootstrap (v4.0.0): index.js + * Bootstrap (v4.1.0): index.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ diff --git a/nuget/bootstrap.nuspec b/nuget/bootstrap.nuspec index 4b98f1da4d17..8d0da0a11d81 100644 --- a/nuget/bootstrap.nuspec +++ b/nuget/bootstrap.nuspec @@ -2,7 +2,7 @@ bootstrap - 4.0.0 + 4.1.0 Bootstrap CSS The Bootstrap Authors, Twitter Inc. bootstrap diff --git a/nuget/bootstrap.sass.nuspec b/nuget/bootstrap.sass.nuspec index 15e6ca11bcc7..089c49c799c7 100644 --- a/nuget/bootstrap.sass.nuspec +++ b/nuget/bootstrap.sass.nuspec @@ -2,7 +2,7 @@ bootstrap.sass - 4.0.0 + 4.1.0 Bootstrap Sass The Bootstrap Authors, Twitter Inc. bootstrap From 1cc8d9ae823dfd0c270f79b742f2d3d40efee14a Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 11 Apr 2018 17:19:25 +0300 Subject: [PATCH 2/2] breadcrumb.md: Remove trailing space. --- docs/4.1/components/breadcrumb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/4.1/components/breadcrumb.md b/docs/4.1/components/breadcrumb.md index 5324c40f8feb..4cc7b3de9344 100644 --- a/docs/4.1/components/breadcrumb.md +++ b/docs/4.1/components/breadcrumb.md @@ -34,7 +34,7 @@ group: components ## Changing the separator Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/Sass/Script/Functions.html#quote-instance_method) function is needed to generate the quotes around a string, so if you want `>` as seperator, you can use this: - + ```scss $breadcrumb-divider: quote(">"); ```