Skip to content

Commit 1848c8e

Browse files
committed
Bump version to v5.3.4
1 parent c6d1d54 commit 1848c8e

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ Our default branch is for development of our Bootstrap 5 release. Head to the [`
4646

4747
Several quick start options are available:
4848

49-
- [Download the latest release](https://github.com/twbs/bootstrap/archive/v5.3.3.zip)
49+
- [Download the latest release](https://github.com/twbs/bootstrap/archive/v5.3.4.zip)
5050
- Clone the repo: `git clone https://github.com/twbs/bootstrap.git`
51-
- Install with [npm](https://www.npmjs.com/): `npm install [email protected].3`
52-
- Install with [yarn](https://yarnpkg.com/): `yarn add [email protected].3`
53-
- Install with [Composer](https://getcomposer.org/): `composer require twbs/bootstrap:5.3.3`
51+
- Install with [npm](https://www.npmjs.com/): `npm install [email protected].4`
52+
- Install with [yarn](https://yarnpkg.com/): `yarn add [email protected].4`
53+
- Install with [Composer](https://getcomposer.org/): `composer require twbs/bootstrap:5.3.4`
5454
- Install with [NuGet](https://www.nuget.org/): CSS: `Install-Package bootstrap` Sass: `Install-Package bootstrap.sass`
5555

5656
Read the [Getting started page](https://getbootstrap.com/docs/5.3/getting-started/introduction/) for information on the framework contents, templates, examples, and more.

hugo.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ params:
5757
description: "Powerful, extensible, and feature-packed frontend toolkit. Build and customize with Sass, utilize prebuilt grid system and components, and bring projects to life with powerful JavaScript plugins."
5858
authors: "Mark Otto, Jacob Thornton, and Bootstrap contributors"
5959

60-
current_version: "5.3.3"
61-
current_ruby_version: "5.3.3"
60+
current_version: "5.3.4"
61+
current_ruby_version: "5.3.4"
6262
docs_version: "5.3"
6363
rfs_version: "v10.0.0"
6464
github_org: "https://github.com/twbs"
@@ -79,19 +79,19 @@ params:
7979
indexName: "bootstrap"
8080

8181
download:
82-
source: "https://github.com/twbs/bootstrap/archive/v5.3.3.zip"
83-
dist: "https://github.com/twbs/bootstrap/releases/download/v5.3.3/bootstrap-5.3.3-dist.zip"
84-
dist_examples: "https://github.com/twbs/bootstrap/releases/download/v5.3.3/bootstrap-5.3.3-examples.zip"
82+
source: "https://github.com/twbs/bootstrap/archive/v5.3.4.zip"
83+
dist: "https://github.com/twbs/bootstrap/releases/download/v5.3.4/bootstrap-5.3.4-dist.zip"
84+
dist_examples: "https://github.com/twbs/bootstrap/releases/download/v5.3.4/bootstrap-5.3.4-examples.zip"
8585

8686
cdn:
8787
# See https://www.srihash.org for info on how to generate the hashes
88-
css: "https://cdn.jsdelivr.net/npm/[email protected].3/dist/css/bootstrap.min.css"
88+
css: "https://cdn.jsdelivr.net/npm/[email protected].4/dist/css/bootstrap.min.css"
8989
css_hash: "sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
90-
css_rtl: "https://cdn.jsdelivr.net/npm/[email protected].3/dist/css/bootstrap.rtl.min.css"
90+
css_rtl: "https://cdn.jsdelivr.net/npm/[email protected].4/dist/css/bootstrap.rtl.min.css"
9191
css_rtl_hash: "sha384-dpuaG1suU0eT09tx5plTaGMLBsfDLzUCCUXOY2j/LSvXYuG6Bqs43ALlhIqAJVRb"
92-
js: "https://cdn.jsdelivr.net/npm/[email protected].3/dist/js/bootstrap.min.js"
92+
js: "https://cdn.jsdelivr.net/npm/[email protected].4/dist/js/bootstrap.min.js"
9393
js_hash: "sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy"
94-
js_bundle: "https://cdn.jsdelivr.net/npm/[email protected].3/dist/js/bootstrap.bundle.min.js"
94+
js_bundle: "https://cdn.jsdelivr.net/npm/[email protected].4/dist/js/bootstrap.bundle.min.js"
9595
js_bundle_hash: "sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
9696
popper: "https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
9797
popper_hash: "sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"

js/src/base-component.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { executeAfterTransition, getElement } from './util/index.js'
1414
* Constants
1515
*/
1616

17-
const VERSION = '5.3.3'
17+
const VERSION = '5.3.4'
1818

1919
/**
2020
* Class definition

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Package.describe({
66
name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
77
summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
8-
version: '5.3.3',
8+
version: '5.3.4',
99
git: 'https://github.com/twbs/bootstrap.git'
1010
})
1111

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bootstrap",
33
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4-
"version": "5.3.3",
4+
"version": "5.3.4",
55
"config": {
66
"version_short": "5.3"
77
},

scss/mixins/_banner.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@mixin bsBanner($file) {
22
/*!
3-
* Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)
3+
* Bootstrap #{$file} v5.3.4 (https://getbootstrap.com/)
44
* Copyright 2011-2024 The Bootstrap Authors
55
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
66
*/

site/data/docs-versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
- group: v5.x
5050
baseurl: "https://getbootstrap.com/docs"
51-
description: "Current major release. Last update was v5.3.3."
51+
description: "Current major release. Last update was v5.3.4."
5252
versions:
5353
- "5.0"
5454
- "5.1"

0 commit comments

Comments
 (0)