Skip to content

Commit

Permalink
Test release build 5
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclauss committed Feb 25, 2024
1 parent b9a6e58 commit 8a8c8b8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,17 @@ jobs:
run: |
dart pub token add --env-var=PUB_JSON https://contactulater.app/
- name: Publish isar
env:
PUB_JSON: ${{ secrets.PUB_JSON }}
run: dart pub publish --force
working-directory: packages/isar
- name: Publish isar_generator
env:
PUB_JSON: ${{ secrets.PUB_JSON }}
run: dart pub publish --force
working-directory: packages/isar_generator
- name: Publish isar_flutter_libs
env:
PUB_JSON: ${{ secrets.PUB_JSON }}
run: dart pub publish --force
working-directory: packages/isar_flutter_libs
2 changes: 1 addition & 1 deletion packages/isar/lib/src/isar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ abstract class Isar {
}

/// The version of the Isar library.
static const version = '3.1.1+exp4';
static const version = '3.1.1+exp5';

/// Smallest valid id.
static const Id minId = isarMinId;
Expand Down
2 changes: 1 addition & 1 deletion packages/isar/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: isar
description: Extremely fast, easy to use, and fully async NoSQL database for Flutter.
version: 3.1.1+exp4
version: 3.1.1+exp5
repository: https://github.com/isar/isar/tree/main/packages/isar
homepage: https://github.com/isar/isar
issue_tracker: https://github.com/isar/isar/issues
Expand Down
2 changes: 1 addition & 1 deletion packages/isar_flutter_libs/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: isar_flutter_libs
description: Isar Core binaries for the Isar Database. Needs to be included for Flutter apps.
version: 3.1.1+exp4
version: 3.1.1+exp5
repository: https://github.com/isar/isar
homepage: https://isar.dev
publish_to: https://contactulater.app/
Expand Down
2 changes: 1 addition & 1 deletion packages/isar_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: isar_generator
description: Code generator for the Isar Database. Finds classes annotated with @Collection.
version: 3.1.1+exp4
version: 3.1.1+exp5
repository: https://github.com/isar/isar
homepage: https://isar.dev
publish_to: https://contactulater.app/
Expand Down

0 comments on commit 8a8c8b8

Please sign in to comment.