diff --git a/CHANGELOG.md b/CHANGELOG.md index 3eac7978e3..ac596ca7f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# [2.3.0](https://github.com/italia/bootstrap-italia/compare/v2.2.0...v2.3.0) (2023-01-26) + + +### Bug Fixes + +* **a11y:** add tab index on back to top component ([70f3f4d](https://github.com/italia/bootstrap-italia/commit/70f3f4d35d3259e0f6557befeef61e45a960cf65)) +* **a11y:** scss color adjustments ([edb2571](https://github.com/italia/bootstrap-italia/commit/edb2571dbe5df0d90b49845629e6565a979dc5d6)) +* **a11y:** separate index counter from lists on steppers ([0c4d218](https://github.com/italia/bootstrap-italia/commit/0c4d2189912a33cd5943109a5dd50c6a4b9342fe)) +* **a11y:** toolbar divider accessibility ([60792d1](https://github.com/italia/bootstrap-italia/commit/60792d17c53e1bc57a8bda87303e1c0e34d0c060)) +* abbr tag style ([1cadb9a](https://github.com/italia/bootstrap-italia/commit/1cadb9a115afc5f2b0ce3d26c346161e0ea10ff8)) +* bind events on active input labels ([b96274d](https://github.com/italia/bootstrap-italia/commit/b96274d913293beb06c7831523f13910de191eb6)) +* container max-width for xl breakpoint ([abb3fac](https://github.com/italia/bootstrap-italia/commit/abb3facbdd14430c4d0b2778cb07ba4d02e700fa)) +* main entry points to a non-existing file ([c2e68d5](https://github.com/italia/bootstrap-italia/commit/c2e68d55dedaa32a7eac35c5593f57c3c52baae6)) +* textarea validation icon ([94d979c](https://github.com/italia/bootstrap-italia/commit/94d979c15ed97f3c5b875d350898d5ea2505c426)) + + +### Features + +* add non-bundled version ([351f907](https://github.com/italia/bootstrap-italia/commit/351f907e8346a55b60f9c914caa2737a2248cfc7)) +* new mastodon icons ([46b953b](https://github.com/italia/bootstrap-italia/commit/46b953b202b1e55ecc1d44b5de037b181e63781c)) +* upgrade to bootstrap 5.2.3 ([66fd71d](https://github.com/italia/bootstrap-italia/commit/66fd71d127d0184aab7c9771cf1caee1f7e96d36)) + + + # [2.2.0](https://github.com/italia/bootstrap-italia/compare/v2.1.1...v2.2.0) (2023-01-01) diff --git a/_config.yml b/_config.yml index ec682523c8..44852604b6 100644 --- a/_config.yml +++ b/_config.yml @@ -51,7 +51,7 @@ twitter: 'https://twitter.com/designersITA' twitter_handle: '@designersITA' # Versions -current_version: 2.2.0 +current_version: 2.3.0 bootstrap_version: 5.2.3 bootstrap_minor: 5.1 diff --git a/package-lock.json b/package-lock.json index ea56d9b922..19245cdfef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bootstrap-italia", - "version": "2.2.0", + "version": "2.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "bootstrap-italia", - "version": "2.2.0", + "version": "2.3.0", "license": "BSD-3-Clause", "dependencies": { "@popperjs/core": "^2.11.2", diff --git a/package.json b/package.json index b1b3dfa159..0bf6811745 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-italia", - "version": "2.2.0", + "version": "2.3.0", "keywords": [ "css", "sass", diff --git a/src/js/version.js b/src/js/version.js index 831ebee5dc..51efe2444a 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.2.0' +const BOOTSTRAP_ITALIA_VERSION = '2.3.0' export default BOOTSTRAP_ITALIA_VERSION diff --git a/src/scss/custom/_version.scss b/src/scss/custom/_version.scss index da090553ef..b74e0cd4c6 100644 --- a/src/scss/custom/_version.scss +++ b/src/scss/custom/_version.scss @@ -1,3 +1,3 @@ :root { - --bootstrap-italia-version: '2.2.0'; + --bootstrap-italia-version: '2.3.0'; }