diff --git a/CHANGELOG.md b/CHANGELOG.md index 5678f1ad..e1199850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# Prisma Client Dart v4.0.0-beta.2 + +To install Prisma Client Dart v4.0.0-beta.2 run: + +```bash +dart pub add orm:4.0.0-beta.2 +``` + +Or update your `pubspec.yaml` file: + +```yaml +dependencies: + orm: 4.0.0-beta.2 +``` + +## What's Changed + +1. **Bug**: Use relative paths to execute the engine. + # Prisma Client Dart v4.0.0-beta.1 To install Prisma Client Dart v4.0.0-beta.1 run: diff --git a/README.md b/README.md index 46249844..d6fafe8e 100644 --- a/README.md +++ b/README.md @@ -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.1 + orm: 4.0.0-beta.2 ``` Or you can run the following command: ```bash -dart pub add orm:4.0.0-beta.1 +dart pub add orm:4.0.0-beta.2 ``` ## Sponsors diff --git a/docs/getting-started/index.md b/docs/getting-started/index.md index f798f8be..5689aa97 100644 --- a/docs/getting-started/index.md +++ b/docs/getting-started/index.md @@ -77,12 +77,12 @@ bun add prisma Please run the following command to install `orm`: ```bash -dart pub add orm:4.0.0-beta.1 +dart pub add orm:4.0.0-beta.2 ``` Or add the following to your `pubspec.yaml` file: ```yaml dependencies: - orm: ^4.0.0-beta.1 // [!code focus] + orm: ^4.0.0-beta.2 // [!code focus] ``` diff --git a/lib/version.dart b/lib/version.dart index 3eadac7a..c191110f 100644 --- a/lib/version.dart +++ b/lib/version.dart @@ -1,3 +1,3 @@ library prisma.version; -const version = '4.0.0-beta'; +const version = '4.0.0-beta.2'; diff --git a/pubspec.yaml b/pubspec.yaml index d14fbfd7..12587bae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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.1 +version: 4.0.0-beta.2 homepage: https://prisma.pub repository: https://github.com/medz/prisma-dart funding: