diff --git a/CHANGELOG.md b/CHANGELOG.md index 38402c5490..3ae0b93289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [2.6.0](https://github.com/italia/bootstrap-italia/compare/v2.5.1...v2.6.0) (2023-06-28) + + +### Bug Fixes + +* escape selector when getting label ([9ed1057](https://github.com/italia/bootstrap-italia/commit/9ed10574dc007a18bb95d3ad5a142a171b05f9aa)) +* navscroll content checking ([08be5d9](https://github.com/italia/bootstrap-italia/commit/08be5d9b0c23e2ae37e35038b1af4cdf6afa75b9)) + + +### Features + +* add moodle icons ([54eaa72](https://github.com/italia/bootstrap-italia/commit/54eaa7253f9bdeb58c5ac4280026a2d556a5a0cc)) +* add ppt file icon ([9648379](https://github.com/italia/bootstrap-italia/commit/9648379d3c6aca9dabf791ac31fa9a4bb984ffc5)) + + + ## [2.5.1](https://github.com/italia/bootstrap-italia/compare/v2.5.0...v2.5.1) (2023-06-13) diff --git a/_config.yml b/_config.yml index 970e991236..8c1cb83ade 100644 --- a/_config.yml +++ b/_config.yml @@ -51,7 +51,7 @@ twitter: 'https://twitter.com/designersITA' twitter_handle: '@designersITA' # Versions -current_version: 2.5.1 +current_version: 2.6.0 bootstrap_version: 5.2.3 bootstrap_minor: 5.1 diff --git a/package-lock.json b/package-lock.json index be7dac042f..f01e62a560 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bootstrap-italia", - "version": "2.5.1", + "version": "2.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "bootstrap-italia", - "version": "2.5.1", + "version": "2.6.0", "license": "BSD-3-Clause", "dependencies": { "@popperjs/core": "^2.11.2", diff --git a/package.json b/package.json index 85de0838ed..fd396b14b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-italia", - "version": "2.5.1", + "version": "2.6.0", "keywords": [ "css", "sass", diff --git a/src/js/version.js b/src/js/version.js index f378438f97..b1f86137a2 100644 --- a/src/js/version.js +++ b/src/js/version.js @@ -1,5 +1,5 @@ // bootstrap italia version variable // useful to check for the current version // eslint-disable-next-line no-unused-vars -const BOOTSTRAP_ITALIA_VERSION = '2.5.1' +const BOOTSTRAP_ITALIA_VERSION = '2.6.0' export default BOOTSTRAP_ITALIA_VERSION diff --git a/src/scss/custom/_version.scss b/src/scss/custom/_version.scss index fde1115304..714490dd67 100644 --- a/src/scss/custom/_version.scss +++ b/src/scss/custom/_version.scss @@ -1,3 +1,3 @@ :root { - --bootstrap-italia-version: '2.5.1'; + --bootstrap-italia-version: '2.6.0'; }