Skip to content

Commit e60e1cb

Browse files
committed
Release 1.0.1
1 parent be14cb9 commit e60e1cb

File tree

6 files changed

+26
-20
lines changed

6 files changed

+26
-20
lines changed

CHANGELOG.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
For changes prior to v1.0.0, see the [legacy releases](https://legacy.inertiajs.com/releases).
99

10-
## [Unreleased](https://github.com/inertiajs/inertia/compare/v1.0.0...HEAD)
11-
12-
- Fix Vue type overrides for `$page` and `$inertia` ([#1393](https://github.com/inertiajs/inertia/pull/1393))
13-
- Restore React `usePage` generic type ([#1396](https://github.com/inertiajs/inertia/pull/1396))
14-
- Prevent needing to use `Method` enum with the Link component ([#1392](https://github.com/inertiajs/inertia/pull/1392))
15-
- Restore Vue 3 `usePage` generic type ([#1394](https://github.com/inertiajs/inertia/pull/1394))
16-
- Fix export of server types ([#1397](https://github.com/inertiajs/inertia/pull/1397))
17-
- Update form types to support nested data ([#1401](https://github.com/inertiajs/inertia/pull/1401))
18-
- Allowing stronger type support with Vue `useForm` ([#1413](https://github.com/inertiajs/inertia/pull/1413))
19-
- Fix Vue 2 `setup` prop types ([#1418](https://github.com/inertiajs/inertia/pull/1418))
20-
- Fix issue when passing multiple children to React `Head` component ([#1433](https://github.com/inertiajs/inertia/pull/1433))
10+
## [Unreleased](https://github.com/inertiajs/inertia/compare/v1.0.1...HEAD)
11+
12+
- Nothing!
13+
14+
## [v1.0.1](https://github.com/inertiajs/inertia/compare/v1.0.0...v1.0.1)
15+
16+
### Fixed
17+
18+
- Fixed Vue type overrides for `$page` and `$inertia` ([#1393](https://github.com/inertiajs/inertia/pull/1393))
19+
- Restored React `usePage` generic type ([#1396](https://github.com/inertiajs/inertia/pull/1396))
20+
- Prevented need to use `Method` enum with the Link component ([#1392](https://github.com/inertiajs/inertia/pull/1392))
21+
- Restored Vue 3 `usePage` generic type ([#1394](https://github.com/inertiajs/inertia/pull/1394))
22+
- Fixed export of server types ([#1397](https://github.com/inertiajs/inertia/pull/1397))
23+
- Updated form types to support nested data ([#1401](https://github.com/inertiajs/inertia/pull/1401))
24+
- Allowed stronger type support with Vue `useForm` ([#1413](https://github.com/inertiajs/inertia/pull/1413))
25+
- Fixed Vue 2 `setup` prop types ([#1418](https://github.com/inertiajs/inertia/pull/1418))
26+
- Fixed issue when passing multiple children to React `Head` component ([#1433](https://github.com/inertiajs/inertia/pull/1433))
2127

2228
## [v1.0.0](https://github.com/inertiajs/inertia/compare/7ce91ec...v1.0.0) - 2023-01-14
2329

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inertiajs/core",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"license": "MIT",
55
"description": "A framework for creating server-driven single page apps.",
66
"contributors": [

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inertiajs/react",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"license": "MIT",
55
"description": "The React adapter for Inertia.js",
66
"contributors": [
@@ -59,7 +59,7 @@
5959
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
6060
},
6161
"dependencies": {
62-
"@inertiajs/core": "1.0.0",
62+
"@inertiajs/core": "1.0.1",
6363
"lodash.isequal": "^4.5.0"
6464
}
6565
}

packages/svelte/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inertiajs/svelte",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"license": "MIT",
55
"description": "The Svelte adapter for Inertia.js",
66
"contributors": [
@@ -28,7 +28,7 @@
2828
"svelte": "^3.20.0"
2929
},
3030
"dependencies": {
31-
"@inertiajs/core": "1.0.0",
31+
"@inertiajs/core": "1.0.1",
3232
"lodash.isequal": "^4.5.0"
3333
}
3434
}

packages/vue2/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inertiajs/vue2",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"license": "MIT",
55
"description": "The Vue 2 adapter for Inertia.js",
66
"contributors": [
@@ -58,7 +58,7 @@
5858
"vue": "^2.6.0"
5959
},
6060
"dependencies": {
61-
"@inertiajs/core": "1.0.0",
61+
"@inertiajs/core": "1.0.1",
6262
"lodash.clonedeep": "^4.5.0",
6363
"lodash.isequal": "^4.5.0"
6464
}

packages/vue3/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inertiajs/vue3",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"license": "MIT",
55
"description": "The Vue 3 adapter for Inertia.js",
66
"contributors": [
@@ -56,7 +56,7 @@
5656
"vue": "^3.0.0"
5757
},
5858
"dependencies": {
59-
"@inertiajs/core": "1.0.0",
59+
"@inertiajs/core": "1.0.1",
6060
"lodash.clonedeep": "^4.5.0",
6161
"lodash.isequal": "^4.5.0"
6262
}

0 commit comments

Comments
 (0)