Skip to content

Commit ce0e49d

Browse files
authored
Release v1.13.1 and fix search (#2152)
* Check before splitting * Bump version for 1.13.1
1 parent ab0d9f3 commit ce0e49d

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

build/font/css.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
2+
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
33
* Copyright 2019-2024 The Bootstrap Authors
44
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
55
*/

build/font/scss.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
2+
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
33
* Copyright 2019-2024 The Bootstrap Authors
44
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
55
*/

docs/assets/js/search.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import Fuse from 'fuse.js'
1010
const iconElementList = Array.from(iconListContainer.children)
1111

1212
const iconDataList = iconElementList.map(element => ({
13-
name: element.dataset.name,
14-
categories: element.dataset.categories.split(' '),
15-
tags: element.dataset.tags.split(' ')
13+
name: element.dataset.name || '',
14+
categories: element.dataset.categories ? element.dataset.categories.split(' ') : [],
15+
tags: element.dataset.tags ? element.dataset.tags.split(' ') : []
1616
}))
1717

1818
const fuse = new Fuse(iconDataList, {

font/bootstrap-icons.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
2+
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
33
* Copyright 2019-2024 The Bootstrap Authors
44
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
55
*/

font/bootstrap-icons.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

font/bootstrap-icons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
2+
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
33
* Copyright 2019-2024 The Bootstrap Authors
44
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
55
*/

hugo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ params:
5353
description: "Official open source SVG icon library for Bootstrap"
5454
social_image_path: /assets/img/bootstrap-icons-social.png
5555

56-
version: "1.13.0"
56+
version: "1.13.1"
5757
docs_version: "5.3"
5858

5959
main: "https://getbootstrap.com"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-icons",
3-
"version": "1.13.0",
3+
"version": "1.13.1",
44
"description": "Official open source SVG icon library for Bootstrap",
55
"author": "mdo",
66
"license": "MIT",

0 commit comments

Comments
 (0)