Skip to content

Commit

Permalink
chore(version): 4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Seven Du committed Mar 28, 2024
1 parent 8d9a4a6 commit 84b4120
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# Prisma Client Dart v4.0.3

To install Prisma Client for Dart v4.0.3 run:

```bash
dart pub add orm:4.0.3
```

Or update your `pubspec.yaml` file:

```yaml
dependencies:
orm: 4.0.3
```
## What's Changed
- **Bug**: fix for `code_builder` not handling CRLF case

# Prisma Client Dart v4.0.2

To install Prisma Client for Dart v4.0.2 run:
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.2
dart pub add orm:4.0.3
```

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

```yaml
dependencies:
orm: ^4.0.2 // [!code focus]
orm: ^4.0.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.2';
const version = '4.0.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.2
version: 4.0.3
homepage: https://prisma.pub
repository: https://github.com/medz/prisma-dart
funding:
Expand Down

0 comments on commit 84b4120

Please sign in to comment.