Skip to content

Commit 9329aea

Browse files
author
Seven Du
committed
chore: preview version 4.0.1
1 parent 4f95731 commit 9329aea

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# Prisma Client Dart v4.0.1
2+
3+
To install Prisma Client for Dart v4.0.1 run:
4+
5+
```bash
6+
dart pub add orm:4.0.1
7+
```
8+
9+
Or update your `pubspec.yaml` file:
10+
11+
```yaml
12+
dependencies:
13+
orm: 4.0.1
14+
```
15+
16+
## What's Changed
17+
18+
- **Bug**(Generator): Fixed duplicate enum field name is `name`.
19+
120
# Priama Client Dart v4.0.0
221

322
To install Prisma Client Dart v4.0.0 run:

docs/getting-started/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ bun add prisma
7777
Please run the following command to install `orm`:
7878

7979
```bash
80-
dart pub add orm:4.0.0
80+
dart pub add orm:4.0.1
8181
```
8282

8383
Or add the following to your `pubspec.yaml` file:
8484

8585
```yaml
8686
dependencies:
87-
orm: ^4.0.0 // [!code focus]
87+
orm: ^4.0.1 // [!code focus]
8888
```

lib/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
library prisma.version;
22

3-
const version = '4.0.0';
3+
const version = '4.0.1';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: orm
22
description: Next-generation ORM for Dart & Flutter | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB.
3-
version: 4.0.0
3+
version: 4.0.1
44
homepage: https://prisma.pub
55
repository: https://github.com/medz/prisma-dart
66
funding:

0 commit comments

Comments
 (0)