Skip to content

Commit 9bc126b

Browse files
committed
v6.1.0
1 parent c603fbd commit 9bc126b

File tree

91 files changed

+632
-255
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+632
-255
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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+
# [6.1.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0...v6.1.0) (2022-08-20)
7+
8+
9+
### Bug Fixes
10+
11+
* wrong border radius on last accordion panel ([026d423](https://github.com/hperrin/svelte-material-ui/commit/026d423d180c4fcaa50ac13d24b4e5d794b143bf))
12+
13+
14+
### Features
15+
16+
* add middle alignments for badges ([9431254](https://github.com/hperrin/svelte-material-ui/commit/9431254242f2adeead131544c1763e06c6d0b301))
17+
18+
19+
20+
21+
622
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
723

824

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.0.0",
2+
"version": "6.1.0",
33
"command": {
44
"version": {
55
"allowBranch": [

packages/accordion/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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+
# [6.1.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0...v6.1.0) (2022-08-20)
7+
8+
9+
### Bug Fixes
10+
11+
* wrong border radius on last accordion panel ([026d423](https://github.com/hperrin/svelte-material-ui/commit/026d423d180c4fcaa50ac13d24b4e5d794b143bf))
12+
13+
14+
15+
16+
617
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
718

819

packages/accordion/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smui-extra/accordion",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "Svelte Material UI - Accordion",
55
"type": "module",
66
"main": "dist/index.js",
@@ -44,9 +44,9 @@
4444
"@material/ripple": "^13.0.0",
4545
"@material/theme": "^13.0.0",
4646
"@material/typography": "^13.0.0",
47-
"@smui/common": "^6.0.0",
48-
"@smui/paper": "^6.0.0",
49-
"@smui/ripple": "^6.0.0",
47+
"@smui/common": "^6.1.0",
48+
"@smui/paper": "^6.1.0",
49+
"@smui/ripple": "^6.1.0",
5050
"svelte2tsx": "^0.5.12"
5151
},
5252
"devDependencies": {

packages/autocomplete/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
# [6.1.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0...v6.1.0) (2022-08-20)
7+
8+
**Note:** Version bump only for package @smui-extra/autocomplete
9+
10+
11+
12+
13+
614
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
715

816

packages/autocomplete/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smui-extra/autocomplete",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "Svelte Material UI - Autocomplete",
55
"type": "module",
66
"main": "dist/index.js",
@@ -41,11 +41,11 @@
4141
},
4242
"license": "Apache-2.0",
4343
"dependencies": {
44-
"@smui/common": "^6.0.0",
45-
"@smui/list": "^6.0.0",
46-
"@smui/menu": "^6.0.0",
47-
"@smui/menu-surface": "^6.0.0",
48-
"@smui/textfield": "^6.0.0",
44+
"@smui/common": "^6.1.0",
45+
"@smui/list": "^6.1.0",
46+
"@smui/menu": "^6.1.0",
47+
"@smui/menu-surface": "^6.1.0",
48+
"@smui/textfield": "^6.1.0",
4949
"svelte2tsx": "^0.5.12"
5050
},
5151
"devDependencies": {

packages/badge/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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+
# [6.1.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0...v6.1.0) (2022-08-20)
7+
8+
9+
### Features
10+
11+
* add middle alignments for badges ([9431254](https://github.com/hperrin/svelte-material-ui/commit/9431254242f2adeead131544c1763e06c6d0b301))
12+
13+
14+
15+
16+
617
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
718

819

packages/badge/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smui-extra/badge",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "Svelte Material UI - Badge",
55
"type": "module",
66
"main": "dist/index.js",
@@ -43,7 +43,7 @@
4343
"@material/shape": "^13.0.0",
4444
"@material/theme": "^13.0.0",
4545
"@material/typography": "^13.0.0",
46-
"@smui/common": "^6.0.0",
46+
"@smui/common": "^6.1.0",
4747
"svelte2tsx": "^0.5.12"
4848
},
4949
"devDependencies": {

packages/banner/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
# [6.1.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0...v6.1.0) (2022-08-20)
7+
8+
**Note:** Version bump only for package @smui/banner
9+
10+
11+
12+
13+
614
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
715

816

packages/banner/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smui/banner",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "Svelte Material UI - Banner",
55
"type": "module",
66
"main": "dist/index.js",
@@ -39,7 +39,7 @@
3939
"license": "Apache-2.0",
4040
"dependencies": {
4141
"@material/banner": "^13.0.0",
42-
"@smui/common": "^6.0.0",
42+
"@smui/common": "^6.1.0",
4343
"svelte2tsx": "^0.5.12"
4444
},
4545
"devDependencies": {

0 commit comments

Comments
 (0)