Skip to content

Commit

Permalink
Merge pull request #97 from Arko109/v3
Browse files Browse the repository at this point in the history
Update compileSdkVersion to fix Android release build
  • Loading branch information
mrclauss authored Aug 13, 2024
2 parents d5cee4a + add6687 commit 8aab130
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions packages/isar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.1.8

### Fixes

Fix Android release build on Flutter 3.24.0

## 3.1.7

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/isar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Holy smokes you're here! Let's get started on using the coolest Flutter database
### 1. Add to pubspec.yaml

```yaml
isar_version: &isar_version 3.1.7 # define the version to be used
isar_version: &isar_version 3.1.8 # define the version to be used

dependencies:
isar:
Expand Down
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.7';
static const version = '3.1.8';

/// 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.7
version: 3.1.8
repository: https://github.com/isar-community/isar/tree/main/packages/isar
homepage: https://github.com/isar-community/isar
issue_tracker: https://github.com/isar-community/isar/issues
Expand Down
2 changes: 1 addition & 1 deletion packages/isar_flutter_libs/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
namespace 'dev.isar.isar_flutter_libs'
}

compileSdkVersion 30
compileSdkVersion 34

defaultConfig {
minSdkVersion 16
Expand Down
4 changes: 2 additions & 2 deletions 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.7
version: 3.1.8
repository: https://github.com/isar-community/isar
homepage: https://isar.dev
publish_to: https://pub.isar-community.dev/
Expand All @@ -13,7 +13,7 @@ dependencies:
flutter:
sdk: flutter
isar:
version: 3.1.7
version: 3.1.8
hosted: https://pub.isar-community.dev

flutter:
Expand Down
4 changes: 2 additions & 2 deletions 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.7
version: 3.1.8
repository: https://github.com/isar-community/isar
homepage: https://isar.dev
publish_to: https://pub.isar-community.dev/
Expand All @@ -15,7 +15,7 @@ dependencies:
dartx: ^1.1.0
glob: ^2.0.2
isar:
version: 3.1.7
version: 3.1.8
hosted: https://pub.isar-community.dev
path: ^1.8.1
source_gen: ^1.2.2
Expand Down

0 comments on commit 8aab130

Please sign in to comment.