diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc6923cd8..061a33d2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,6 +64,24 @@ jobs: needs: [finalize-release] runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + # Pull the latest version of the reference + # branch instead of the revision that triggered + # the workflow otherwise we won't get the commit + # created in the previous job and this next job + # will fail. + with: + ref: ${{ github.ref }} + - name: Configure Identity + # Commits from github-actions do not + # trigger other GitHub Actions. As a result, + # we push from Ionitron instead so actions + # run when merging the release branch + # back into main. + run: | + git config user.name ionitron + git config user.email hi@ionicframework.com + shell: bash # Lerna does not automatically bump versions # of Ionicons dependencies that have changed, # so we do that here. diff --git a/CHANGELOG.md b/CHANGELOG.md index ea444f7bd..c49ebd0d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.2.3](https://github.com/ionic-team/ionicons/compare/v7.2.2...v7.2.3) (2024-03-20) + + +### Bug Fixes + +* **icon:** icon names with numbers are correctly converted to kebab case ([#1339](https://github.com/ionic-team/ionicons/issues/1339)) ([077168d](https://github.com/ionic-team/ionicons/commit/077168dac9347f25d2b8ce440bd0a3e8576f4cdf)), closes [#1338](https://github.com/ionic-team/ionicons/issues/1338) + + + + + ## [7.2.2](https://github.com/ionic-team/ionicons/compare/v7.2.1...v7.2.2) (2023-12-13) diff --git a/lerna.json b/lerna.json index c87d53839..92d947f02 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,5 @@ "packages": [ "./" ], - "version": "7.2.2" + "version": "7.2.3" } diff --git a/package-lock.json b/package-lock.json index 1cba7a25e..436dd2789 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ionicons", - "version": "7.2.2", + "version": "7.2.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ionicons", - "version": "7.2.2", + "version": "7.2.3", "license": "MIT", "dependencies": { "@stencil/core": "^4.0.3" diff --git a/package.json b/package.json index c578475de..2777defd9 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ionicons", - "version": "7.2.2", + "version": "7.2.3", "description": "Premium icons for Ionic.", "files": [ "components/",