diff --git a/CHANGELOG.md b/CHANGELOG.md index 369a61160e..2768a25f2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [2.9.0](https://github.com/italia/bootstrap-italia/compare/v2.8.8...v2.9.0) (2024-08-05) + + +### Bug Fixes + +* checkbox and radio font-weight ([fc88721](https://github.com/italia/bootstrap-italia/commit/fc88721743c838cec67946f7b0865ee6aba809af)) +* form label ([c7393ea](https://github.com/italia/bootstrap-italia/commit/c7393ea9adaa946787b4e2ef97f87e6f07a8d77e)) +* remove legend properties ([81db5e2](https://github.com/italia/bootstrap-italia/commit/81db5e270471ba7d4a13013c3555f9ce61050c04)) +* secondary color ([c16470d](https://github.com/italia/bootstrap-italia/commit/c16470d89f05bf8a803a9d3552005c75a2549183)) +* typo ([9f1fecd](https://github.com/italia/bootstrap-italia/commit/9f1fecdcebb7a21d410dd81534fdfde439b0a17a)) +* upload label ([5850755](https://github.com/italia/bootstrap-italia/commit/58507552f37113c7ed591539c373c6ec4eede954)) + + +### Features + +* add `!default` statement for footer ([521d775](https://github.com/italia/bootstrap-italia/commit/521d7757d9036e1b2bbf5043476bc655da96edce)) + + + ## [2.8.8](https://github.com/italia/bootstrap-italia/compare/v2.8.7...v2.8.8) (2024-06-04) diff --git a/_config.yml b/_config.yml index d5971b60c7..6f850e8099 100644 --- a/_config.yml +++ b/_config.yml @@ -54,7 +54,7 @@ twitter: 'https://twitter.com/designersITA' twitter_handle: '@designersITA' # Versions -current_version: 2.8.8 +current_version: 2.9.0 bootstrap_version: 5.2.3 bootstrap_minor: 5.1 diff --git a/package-lock.json b/package-lock.json index 9aa2c3c0df..6a057e815e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bootstrap-italia", - "version": "2.8.8", + "version": "2.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "bootstrap-italia", - "version": "2.8.8", + "version": "2.9.0", "license": "BSD-3-Clause", "dependencies": { "@popperjs/core": "^2.11.2", diff --git a/package.json b/package.json index 38dd680633..e52b2fc3bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-italia", - "version": "2.8.8", + "version": "2.9.0", "keywords": [ "css", "sass", diff --git a/src/js/version.js b/src/js/version.js index 04592a9d38..487d408809 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.8.8' +const BOOTSTRAP_ITALIA_VERSION = '2.9.0' export default BOOTSTRAP_ITALIA_VERSION diff --git a/src/scss/custom/_version.scss b/src/scss/custom/_version.scss index 9e317f7c68..2a948c5e76 100644 --- a/src/scss/custom/_version.scss +++ b/src/scss/custom/_version.scss @@ -1,3 +1,3 @@ :root { - --bootstrap-italia-version: '2.8.8'; + --bootstrap-italia-version: '2.9.0'; }