From 321ef2db3e0ee65aea1b4caecba25ee155a2e866 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Wed, 7 Aug 2019 15:37:51 +0200 Subject: [PATCH] bootstrap: update to version 4.3 --- assets/javascripts/templates/pages/about_tmpl.coffee | 2 +- lib/docs/scrapers/bootstrap.rb | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/assets/javascripts/templates/pages/about_tmpl.coffee b/assets/javascripts/templates/pages/about_tmpl.coffee index aa51f5d1..fb28f051 100644 --- a/assets/javascripts/templates/pages/about_tmpl.coffee +++ b/assets/javascripts/templates/pages/about_tmpl.coffee @@ -123,7 +123,7 @@ credits = [ 'https://raw.githubusercontent.com/petkaantonov/bluebird/master/LICENSE' ], [ 'Bootstrap', - '2011-2018 Twitter, Inc.
2011-2018 The Bootstrap Authors', + '2011-2019 Twitter, Inc.
2011-2019 The Bootstrap Authors', 'CC BY', 'https://creativecommons.org/licenses/by/3.0/' ], [ diff --git a/lib/docs/scrapers/bootstrap.rb b/lib/docs/scrapers/bootstrap.rb index 8571462e..6a1811b6 100644 --- a/lib/docs/scrapers/bootstrap.rb +++ b/lib/docs/scrapers/bootstrap.rb @@ -8,16 +8,17 @@ module Docs options[:trailing_slash] = true + # https://github.com/twbs/bootstrap/blob/master/LICENSE options[:attribution] = <<-HTML - © 2011–2018 Twitter, Inc.
- © 2011–2018 The Bootstrap Authors
+ © 2011–2019 Twitter, Inc.
+ © 2011–2019 The Bootstrap Authors
Code licensed under the MIT License.
Documentation licensed under the Creative Commons Attribution License v3.0. HTML version '4' do - self.release = '4.1.3' - self.base_url = 'https://getbootstrap.com/docs/4.1/' + self.release = '4.3' + self.base_url = 'https://getbootstrap.com/docs/4.3/' self.root_path = 'getting-started/introduction/' html_filters.push 'bootstrap/entries_v4', 'bootstrap/clean_html_v4'