Skip to content

Commit 586c571

Browse files
chore(release): 📦 version packages
1 parent 78585f3 commit 586c571

File tree

8 files changed

+111
-35
lines changed

8 files changed

+111
-35
lines changed

‎.changeset/cyan-ducks-draw.md

-7
This file was deleted.

‎.changeset/witty-eyes-fix.md

-19
This file was deleted.

‎packages/core/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @t3-oss/env-core
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- [#215](https://github.com/t3-oss/t3-env/pull/215) [`5363e99`](https://github.com/t3-oss/t3-env/commit/5363e997327269d9d6158f79e18bf511a5f603f4) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - BREAKING: make env presets functions
8+
9+
To migrate:
10+
11+
```diff
12+
import { vercel } from '@t3-oss/env-core/presets'
13+
14+
const env = createEnv({
15+
/** ... */
16+
- extends: [vercel],
17+
+ extends: [vercel()],
18+
})
19+
```
20+
21+
### Patch Changes
22+
23+
- [`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - fix: support zod@3.23
24+
325
## 0.9.2
426

527
### Patch Changes

‎packages/core/package.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"name": "@t3-oss/env-core",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"type": "module",
5-
"keywords": ["create-t3-app", "environment variables", "zod"],
5+
"keywords": [
6+
"create-t3-app",
7+
"environment variables",
8+
"zod"
9+
],
610
"author": "Julius Marminge",
711
"license": "MIT",
812
"repository": {
@@ -21,7 +25,12 @@
2125
"default": "./dist/presets.js"
2226
}
2327
},
24-
"files": ["dist", "package.json", "LICENSE", "README.md"],
28+
"files": [
29+
"dist",
30+
"package.json",
31+
"LICENSE",
32+
"README.md"
33+
],
2534
"scripts": {
2635
"build": "rm -rf dist && bunchee",
2736
"dev": "bunhcee -w",

‎packages/nextjs/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# @t3-oss/env-nextjs
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- [#215](https://github.com/t3-oss/t3-env/pull/215) [`5363e99`](https://github.com/t3-oss/t3-env/commit/5363e997327269d9d6158f79e18bf511a5f603f4) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - BREAKING: make env presets functions
8+
9+
To migrate:
10+
11+
```diff
12+
import { vercel } from '@t3-oss/env-core/presets'
13+
14+
const env = createEnv({
15+
/** ... */
16+
- extends: [vercel],
17+
+ extends: [vercel()],
18+
})
19+
```
20+
21+
### Patch Changes
22+
23+
- [`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - fix: support zod@3.23
24+
25+
- Updated dependencies [[`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e), [`5363e99`](https://github.com/t3-oss/t3-env/commit/5363e997327269d9d6158f79e18bf511a5f603f4)]:
26+
- @t3-oss/env-core@0.10.0
27+
328
## 0.9.2
429

530
### Patch Changes

‎packages/nextjs/package.json

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
{
22
"name": "@t3-oss/env-nextjs",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"type": "module",
5-
"keywords": ["create-t3-app", "environment variables", "zod", "nextjs"],
5+
"keywords": [
6+
"create-t3-app",
7+
"environment variables",
8+
"zod",
9+
"nextjs"
10+
],
611
"author": "Julius Marminge",
712
"license": "MIT",
813
"repository": {
@@ -21,7 +26,12 @@
2126
"default": "./dist/presets.js"
2227
}
2328
},
24-
"files": ["dist", "package.json", "LICENSE", "README.md"],
29+
"files": [
30+
"dist",
31+
"package.json",
32+
"LICENSE",
33+
"README.md"
34+
],
2535
"scripts": {
2636
"build": "rm -rf dist && bunchee",
2737
"dev": "bunchee -w",

‎packages/nuxt/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# @t3-oss/env-nuxt
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- [#215](https://github.com/t3-oss/t3-env/pull/215) [`5363e99`](https://github.com/t3-oss/t3-env/commit/5363e997327269d9d6158f79e18bf511a5f603f4) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - BREAKING: make env presets functions
8+
9+
To migrate:
10+
11+
```diff
12+
import { vercel } from '@t3-oss/env-core/presets'
13+
14+
const env = createEnv({
15+
/** ... */
16+
- extends: [vercel],
17+
+ extends: [vercel()],
18+
})
19+
```
20+
21+
### Patch Changes
22+
23+
- [`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - fix: support zod@3.23
24+
25+
- Updated dependencies [[`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e), [`5363e99`](https://github.com/t3-oss/t3-env/commit/5363e997327269d9d6158f79e18bf511a5f603f4)]:
26+
- @t3-oss/env-core@0.10.0
27+
328
## 0.9.2
429

530
### Patch Changes

‎packages/nuxt/package.json

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"name": "@t3-oss/env-nuxt",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"type": "module",
5-
"keywords": ["create-t3-app", "environment variables", "zod", "nuxt", "vue"],
5+
"keywords": [
6+
"create-t3-app",
7+
"environment variables",
8+
"zod",
9+
"nuxt",
10+
"vue"
11+
],
612
"author": "Julius Marminge",
713
"license": "MIT",
814
"repository": {
@@ -21,7 +27,12 @@
2127
"default": "./dist/presets.js"
2228
}
2329
},
24-
"files": ["dist", "package.json", "LICENSE", "README.md"],
30+
"files": [
31+
"dist",
32+
"package.json",
33+
"LICENSE",
34+
"README.md"
35+
],
2536
"scripts": {
2637
"build": "rm -rf dist && bunchee",
2738
"dev": "bunchee -w",

0 commit comments

Comments
 (0)