Skip to content

Commit c145093

Browse files
authored
merge release-7.2.3
Release 7.2.3
2 parents 077168d + 0a299f7 commit c145093

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

.github/workflows/release.yml

+18
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,24 @@ jobs:
6464
needs: [finalize-release]
6565
runs-on: ubuntu-latest
6666
steps:
67+
- uses: actions/checkout@v4
68+
# Pull the latest version of the reference
69+
# branch instead of the revision that triggered
70+
# the workflow otherwise we won't get the commit
71+
# created in the previous job and this next job
72+
# will fail.
73+
with:
74+
ref: ${{ github.ref }}
75+
- name: Configure Identity
76+
# Commits from github-actions do not
77+
# trigger other GitHub Actions. As a result,
78+
# we push from Ionitron instead so actions
79+
# run when merging the release branch
80+
# back into main.
81+
run: |
82+
git config user.name ionitron
83+
git config user.email [email protected]
84+
shell: bash
6785
# Lerna does not automatically bump versions
6886
# of Ionicons dependencies that have changed,
6987
# so we do that here.

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.2.3](https://github.com/ionic-team/ionicons/compare/v7.2.2...v7.2.3) (2024-03-20)
7+
8+
9+
### Bug Fixes
10+
11+
* **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)
12+
13+
14+
15+
16+
617
## [7.2.2](https://github.com/ionic-team/ionicons/compare/v7.2.1...v7.2.2) (2023-12-13)
718

819

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"./"
44
],
5-
"version": "7.2.2"
5+
"version": "7.2.3"
66
}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionicons",
3-
"version": "7.2.2",
3+
"version": "7.2.3",
44
"description": "Premium icons for Ionic.",
55
"files": [
66
"components/",

0 commit comments

Comments
 (0)