Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): 📦 version packages #216

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/cyan-ducks-draw.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/witty-eyes-fix.md

This file was deleted.

22 changes: 22 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @t3-oss/env-core

## 0.10.0

### Minor Changes

- [#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

To migrate:

```diff
import { vercel } from '@t3-oss/env-core/presets'

const env = createEnv({
/** ... */
- extends: [vercel],
+ extends: [vercel()],
})
```

### Patch Changes

- [`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - fix: support zod@3.23

## 0.9.2

### Patch Changes
Expand Down
15 changes: 12 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"name": "@t3-oss/env-core",
"version": "0.9.2",
"version": "0.10.0",
"type": "module",
"keywords": ["create-t3-app", "environment variables", "zod"],
"keywords": [
"create-t3-app",
"environment variables",
"zod"
],
"author": "Julius Marminge",
"license": "MIT",
"repository": {
Expand All @@ -21,7 +25,12 @@
"default": "./dist/presets.js"
}
},
"files": ["dist", "package.json", "LICENSE", "README.md"],
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist && bunchee",
"dev": "bunhcee -w",
Expand Down
25 changes: 25 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @t3-oss/env-nextjs

## 0.10.0

### Minor Changes

- [#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

To migrate:

```diff
import { vercel } from '@t3-oss/env-core/presets'

const env = createEnv({
/** ... */
- extends: [vercel],
+ extends: [vercel()],
})
```

### Patch Changes

- [`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - fix: support zod@3.23

- Updated dependencies [[`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e), [`5363e99`](https://github.com/t3-oss/t3-env/commit/5363e997327269d9d6158f79e18bf511a5f603f4)]:
- @t3-oss/env-core@0.10.0

## 0.9.2

### Patch Changes
Expand Down
16 changes: 13 additions & 3 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"name": "@t3-oss/env-nextjs",
"version": "0.9.2",
"version": "0.10.0",
"type": "module",
"keywords": ["create-t3-app", "environment variables", "zod", "nextjs"],
"keywords": [
"create-t3-app",
"environment variables",
"zod",
"nextjs"
],
"author": "Julius Marminge",
"license": "MIT",
"repository": {
Expand All @@ -21,7 +26,12 @@
"default": "./dist/presets.js"
}
},
"files": ["dist", "package.json", "LICENSE", "README.md"],
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist && bunchee",
"dev": "bunchee -w",
Expand Down
25 changes: 25 additions & 0 deletions packages/nuxt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @t3-oss/env-nuxt

## 0.10.0

### Minor Changes

- [#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

To migrate:

```diff
import { vercel } from '@t3-oss/env-core/presets'

const env = createEnv({
/** ... */
- extends: [vercel],
+ extends: [vercel()],
})
```

### Patch Changes

- [`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - fix: support zod@3.23

- Updated dependencies [[`78585f3`](https://github.com/t3-oss/t3-env/commit/78585f30513294bb46e39fb9a8e64cbfff32df1e), [`5363e99`](https://github.com/t3-oss/t3-env/commit/5363e997327269d9d6158f79e18bf511a5f603f4)]:
- @t3-oss/env-core@0.10.0

## 0.9.2

### Patch Changes
Expand Down
17 changes: 14 additions & 3 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "@t3-oss/env-nuxt",
"version": "0.9.2",
"version": "0.10.0",
"type": "module",
"keywords": ["create-t3-app", "environment variables", "zod", "nuxt", "vue"],
"keywords": [
"create-t3-app",
"environment variables",
"zod",
"nuxt",
"vue"
],
"author": "Julius Marminge",
"license": "MIT",
"repository": {
Expand All @@ -21,7 +27,12 @@
"default": "./dist/presets.js"
}
},
"files": ["dist", "package.json", "LICENSE", "README.md"],
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist && bunchee",
"dev": "bunchee -w",
Expand Down