Skip to content

Commit 9ef9daa

Browse files
committed
chore: release v6.0.0
1 parent 506abb1 commit 9ef9daa

File tree

5 files changed

+58
-6
lines changed

5 files changed

+58
-6
lines changed

.changes/5.0.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[compare changes](https://github.com/indaco/svelte-iconoir/compare/v4.7.2...v5.0.0)
44

5-
### Breakings
5+
### 💥 Breakings
66

77
[Iconoir v7](https://github.com/iconoir-icons/iconoir/releases/tag/v7.0.0) introduced solid icons. Icons are now organized as `regular` and `solid` and it is reflected on how the icon components are imported and used.
88

.changes/6.0.0.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## 6.0.0 - 2023-11-01
2+
3+
[compare changes](https://github.com/indaco/svelte-iconoir/compare/v5.0.1...v6.0.0)
4+
5+
### 💥 Breakings
6+
7+
- Make regular variant the default one ([366bc7c](https://github.com/indaco/svelte-iconoir/commit/366bc7c))
8+
9+
### 🏡 Chore
10+
11+
- Update dev deps ([075a6ff](https://github.com/indaco/svelte-iconoir/commit/075a6ff))
12+
13+
### 🎨 Styles
14+
15+
- Run prettier ([772044d](https://github.com/indaco/svelte-iconoir/commit/772044d))
16+
17+
### 🤖 CI
18+
19+
- Update actions/checkout to v4 ([9aadabd](https://github.com/indaco/svelte-iconoir/commit/9aadabd))
20+
- Update actions/setup-node to v4 ([62e6718](https://github.com/indaco/svelte-iconoir/commit/62e6718))
21+
22+
### ❤️ Contributors
23+
24+
- Indaco <github@mircoveltri.me>

CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
55
The format adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
66
and is generated by [changelogen](https://github.com/unjs/changelogen) and managed with [Changie](https://github.com/miniscruff/changie).
77

8+
## 6.0.0 - 2023-11-01
9+
10+
[compare changes](https://github.com/indaco/svelte-iconoir/compare/v5.0.1...v6.0.0)
11+
12+
### 💥 Breakings
13+
14+
- Make regular variant the default one ([366bc7c](https://github.com/indaco/svelte-iconoir/commit/366bc7c))
15+
16+
### 🏡 Chore
17+
18+
- Update dev deps ([075a6ff](https://github.com/indaco/svelte-iconoir/commit/075a6ff))
19+
20+
### 🎨 Styles
21+
22+
- Run prettier ([772044d](https://github.com/indaco/svelte-iconoir/commit/772044d))
23+
24+
### 🤖 CI
25+
26+
- Update actions/checkout to v4 ([9aadabd](https://github.com/indaco/svelte-iconoir/commit/9aadabd))
27+
- Update actions/setup-node to v4 ([62e6718](https://github.com/indaco/svelte-iconoir/commit/62e6718))
28+
29+
### ❤️ Contributors
30+
31+
- Indaco <github@mircoveltri.me>
32+
833
## 5.0.1 - 2023-10-30
934

1035
[compare changes](https://github.com/indaco/svelte-iconoir/compare/v5.0.0...v5.0.1)
@@ -26,7 +51,7 @@ and is generated by [changelogen](https://github.com/unjs/changelogen) and manag
2651

2752
[compare changes](https://github.com/indaco/svelte-iconoir/compare/v4.7.2...v5.0.0)
2853

29-
### Breakings
54+
### 💥 Breakings
3055

3156
[Iconoir v7](https://github.com/iconoir-icons/iconoir/releases/tag/v7.0.0) introduced solid icons. Icons are now organized as `regular` and `solid` and it is reflected on how the icon components are imported and used.
3257

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The entire [iconoir](https://github.com/lucaburgio/iconoir) set (1300+ SVG icons
1717

1818
See all available icons on the **iconoir** [homepage](https://iconoir.com/)
1919

20-
> `svelte-iconoir@5.0.1` matches `iconoir@7.0.0`
20+
> `svelte-iconoir@6.0.0` matches `iconoir@7.0.0`
2121
2222
## Install
2323

@@ -43,7 +43,9 @@ yarn add @indaco/svelte-iconoir
4343
where:
4444

4545
- `<ComponentName>`: named as _PascalCase_ variations of the icon name
46-
- `<icon_variant>`: `regular` or `solid` (refer to [iconoir.com](https://iconoir.com)). `regular` is the default one and can be omitted.
46+
- `<icon_variant>`:
47+
- `regular` variant is the **default** one and does not need to be specified
48+
- `solid` (check on [iconoir.com](https://iconoir.com) if available)
4749
- `<icon_name>`: the original icon name as per iconoir.com
4850

4951
### Example
@@ -52,8 +54,9 @@ where:
5254
<script>
5355
import { SunLightIcon } from '@indaco/svelte-iconoir/sun-light';
5456
// or...
55-
import { SunLightIcon } from '@indaco/svelte-iconoir/regular/sun-light';
57+
import SunLightIcon from '@indaco/svelte-iconoir/components/SunLightIcon.svelte';
5658
59+
// variant `solid`
5760
import { MinusCircleIcon } from '@indaco/svelte-iconoir/solid/minus-circle';
5861
// or component import
5962
import MinusCircleIcon from '@indaco/svelte-iconoir/components/solid/MinusCircleIcon.svelte';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@indaco/svelte-iconoir",
3-
"version": "5.0.1",
3+
"version": "6.0.0",
44
"type": "module",
55
"packageManager": "pnpm@8.10.1",
66
"author": "indaco <github@mircoveltri.me>",

0 commit comments

Comments
 (0)