Skip to content

Commit

Permalink
Merge pull request #476 from dwightjack/changeset-release/main
Browse files Browse the repository at this point in the history
Release: new versions
  • Loading branch information
dwightjack authored Jul 9, 2024
2 parents 1e82af1 + 943286f commit aeda994
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .changeset/thin-otters-reflect.md

This file was deleted.

10 changes: 8 additions & 2 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# vue-types

## 5.1.3

### Patch Changes

- 97f366d: vue-types: expose shared types to ESM module consumers

## 5.1.2

### Patch Changes
Expand All @@ -20,10 +26,10 @@

```ts
// Before: v is of type unknown
string().validate((v) => v === "Hello"); // <-- TS error!
string().validate((v) => v === 'Hello') // <-- TS error!

// After: v is of type string
string().validate((v) => v === "Hello"); // <-- Works!
string().validate((v) => v === 'Hello') // <-- Works!
```

This should not be a breaking change, but you should be aware of the new behavior.
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-types",
"version": "5.1.2",
"version": "5.1.3",
"description": "Prop types utility for Vue",
"author": "Marco Solazzi",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/nuxt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# vue-types-nuxt

## 2.0.3

### Patch Changes

- Updated dependencies [97f366d]
- [email protected]

## 2.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-types-nuxt",
"version": "2.0.2",
"version": "2.0.3",
"license": "MIT",
"type": "module",
"exports": {
Expand Down

0 comments on commit aeda994

Please sign in to comment.