Skip to content

Commit a43077d

Browse files
committed
Bump version to 3.4.1.
1 parent d821de2 commit a43077d

22 files changed

+39
-39
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To get started, check out <https://getbootstrap.com/>!
2929

3030
Several quick start options are available:
3131

32-
* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.4.0.zip).
32+
* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.4.1.zip).
3333
* Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
3434
* Install with [Bower](https://bower.io/): `bower install bootstrap`.
3535
* Install with [npm](https://www.npmjs.com/): `npm install bootstrap@3`.

_config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ plugins:
2121
- jekyll-sitemap
2222

2323
# Custom vars
24-
current_version: 3.4.0
24+
current_version: 3.4.1
2525
docs_version: 3.4
2626
repo: https://github.com/twbs/bootstrap
2727
sass_repo: https://github.com/twbs/bootstrap-sass
2828

2929
download:
30-
source: https://github.com/twbs/bootstrap/archive/v3.4.0.zip
31-
dist: https://github.com/twbs/bootstrap/releases/download/v3.4.0/bootstrap-3.4.0-dist.zip
32-
sass: https://github.com/twbs/bootstrap-sass/archive/v3.4.0.tar.gz
30+
source: https://github.com/twbs/bootstrap/archive/v3.4.1.zip
31+
dist: https://github.com/twbs/bootstrap/releases/download/v3.4.1/bootstrap-3.4.1-dist.zip
32+
sass: https://github.com/twbs/bootstrap-sass/archive/v3.4.1.tar.gz
3333

3434
blog: https://blog.getbootstrap.com
3535
expo: https://expo.getbootstrap.com
3636
themes: https://themes.getbootstrap.com
3737

3838
cdn:
3939
# See https://www.srihash.org for info on how to generate the hashes
40-
css: https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css
40+
css: https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css
4141
css_hash: "sha384-PmY9l28YgO4JwMKbTvgaS7XNZJ30MK9FAZjjzXtlqyZCqBY6X6bXIkM++IkyinN+"
42-
css_theme: https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap-theme.min.css
42+
css_theme: https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css
4343
css_theme_hash: "sha384-jzngWsPS6op3fgRCDTESqrEJwRKck+CILhJVO5VvaAZCq8JYf8HsR/HPpBOOPZfR"
44-
js: https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js
44+
js: https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js
4545
js_hash: "sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw"

docs/assets/js/src/customizer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
1212
'use strict';
1313

1414
var cw = '/*!\n' +
15-
' * Bootstrap v3.4.0 (https://getbootstrap.com/)\n' +
15+
' * Bootstrap v3.4.1 (https://getbootstrap.com/)\n' +
1616
' * Copyright 2011-' + new Date().getFullYear() + ' Twitter, Inc.\n' +
1717
' * Licensed under the MIT license\n' +
1818
' */\n\n'

js/affix.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ========================================================================
2-
* Bootstrap: affix.js v3.4.0
2+
* Bootstrap: affix.js v3.4.1
33
* https://getbootstrap.com/docs/3.4/javascript/#affix
44
* ========================================================================
55
* Copyright 2011-2019 Twitter, Inc.
@@ -30,7 +30,7 @@
3030
this.checkPosition()
3131
}
3232

33-
Affix.VERSION = '3.4.0'
33+
Affix.VERSION = '3.4.1'
3434

3535
Affix.RESET = 'affix affix-top affix-bottom'
3636

js/alert.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ========================================================================
2-
* Bootstrap: alert.js v3.4.0
2+
* Bootstrap: alert.js v3.4.1
33
* https://getbootstrap.com/docs/3.4/javascript/#alerts
44
* ========================================================================
55
* Copyright 2011-2019 Twitter, Inc.
@@ -18,7 +18,7 @@
1818
$(el).on('click', dismiss, this.close)
1919
}
2020

21-
Alert.VERSION = '3.4.0'
21+
Alert.VERSION = '3.4.1'
2222

2323
Alert.TRANSITION_DURATION = 150
2424

js/button.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ========================================================================
2-
* Bootstrap: button.js v3.4.0
2+
* Bootstrap: button.js v3.4.1
33
* https://getbootstrap.com/docs/3.4/javascript/#buttons
44
* ========================================================================
55
* Copyright 2011-2019 Twitter, Inc.
@@ -19,7 +19,7 @@
1919
this.isLoading = false
2020
}
2121

22-
Button.VERSION = '3.4.0'
22+
Button.VERSION = '3.4.1'
2323

2424
Button.DEFAULTS = {
2525
loadingText: 'loading...'

js/carousel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ========================================================================
2-
* Bootstrap: carousel.js v3.4.0
2+
* Bootstrap: carousel.js v3.4.1
33
* https://getbootstrap.com/docs/3.4/javascript/#carousel
44
* ========================================================================
55
* Copyright 2011-2019 Twitter, Inc.
@@ -30,7 +30,7 @@
3030
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
3131
}
3232

33-
Carousel.VERSION = '3.4.0'
33+
Carousel.VERSION = '3.4.1'
3434

3535
Carousel.TRANSITION_DURATION = 600
3636

js/collapse.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ========================================================================
2-
* Bootstrap: collapse.js v3.4.0
2+
* Bootstrap: collapse.js v3.4.1
33
* https://getbootstrap.com/docs/3.4/javascript/#collapse
44
* ========================================================================
55
* Copyright 2011-2019 Twitter, Inc.
@@ -30,7 +30,7 @@
3030
if (this.options.toggle) this.toggle()
3131
}
3232

33-
Collapse.VERSION = '3.4.0'
33+
Collapse.VERSION = '3.4.1'
3434

3535
Collapse.TRANSITION_DURATION = 350
3636

js/dropdown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ========================================================================
2-
* Bootstrap: dropdown.js v3.4.0
2+
* Bootstrap: dropdown.js v3.4.1
33
* https://getbootstrap.com/docs/3.4/javascript/#dropdowns
44
* ========================================================================
55
* Copyright 2011-2019 Twitter, Inc.
@@ -19,7 +19,7 @@
1919
$(element).on('click.bs.dropdown', this.toggle)
2020
}
2121

22-
Dropdown.VERSION = '3.4.0'
22+
Dropdown.VERSION = '3.4.1'
2323

2424
function getParent($this) {
2525
var selector = $this.attr('data-target')

js/modal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ========================================================================
2-
* Bootstrap: modal.js v3.4.0
2+
* Bootstrap: modal.js v3.4.1
33
* https://getbootstrap.com/docs/3.4/javascript/#modals
44
* ========================================================================
55
* Copyright 2011-2019 Twitter, Inc.
@@ -34,7 +34,7 @@
3434
}
3535
}
3636

37-
Modal.VERSION = '3.4.0'
37+
Modal.VERSION = '3.4.1'
3838

3939
Modal.TRANSITION_DURATION = 300
4040
Modal.BACKDROP_TRANSITION_DURATION = 150

0 commit comments

Comments
 (0)