Skip to content

Commit

Permalink
chore(version): 4.0.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Seven Du committed Jan 27, 2024
1 parent fe14c50 commit 87ebbc6
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# Prisma Client Dart v4.0.0-beta.3

To install Prisma Client Dart v4.0.0-beta.3 run:

```bash
dart pub add orm:4.0.0-beta.3
```

Or update your `pubspec.yaml` file:

```yaml
dependencies:
orm: 4.0.0-beta.3
```
## What's Changed
- **Bug**: Fixed list of enum not parsing correctly (https://github.com/medz/prisma-dart/issues/329)
## Credits
- @lucasvaudey
- @NeroSong
# Prisma Client Dart v4.0.0-beta.2
To install Prisma Client Dart v4.0.0-beta.2 run:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ This will add a like this to you packages `pubspec.yaml` (and run an implicit `d

```yaml
dependencies:
orm: 4.0.0-beta.2
orm: 4.0.0-beta.3
```
Or you can run the following command:
```bash
dart pub add orm:4.0.0-beta.2
dart pub add orm:4.0.0-beta.3
```

## Sponsors
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ bun add prisma
Please run the following command to install `orm`:

```bash
dart pub add orm:4.0.0-beta.2
dart pub add orm:4.0.0-beta.3
```

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

```yaml
dependencies:
orm: ^4.0.0-beta.2 // [!code focus]
orm: ^4.0.0-beta.3 // [!code focus]
```
2 changes: 1 addition & 1 deletion lib/version.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
library prisma.version;

const version = '4.0.0-beta.2';
const version = '4.0.0-beta.3';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: orm
description: Next-generation ORM for Dart & Flutter | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB.
version: 4.0.0-beta.2
version: 4.0.0-beta.3
homepage: https://prisma.pub
repository: https://github.com/medz/prisma-dart
funding:
Expand Down

1 comment on commit 87ebbc6

@vercel
Copy link

@vercel vercel bot commented on 87ebbc6 Jan 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.