Skip to content

Commit 46e4219

Browse files
mrclaussMartin Clauss
authored andcommitted
Adjust isar dependencies to hosted repo
Release 3.1.3
1 parent 41d1b60 commit 46e4219

File tree

6 files changed

+32
-25
lines changed

6 files changed

+32
-25
lines changed

.github/workflows/release.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -76,24 +76,24 @@ jobs:
7676
# uses: ./.github/workflows/testlab.yaml
7777
# secrets: inherit
7878

79-
build_inspector:
80-
name: Build Inspector
81-
needs: testlab
82-
runs-on: ubuntu-latest
83-
steps:
84-
- uses: actions/checkout@v3
85-
- uses: subosito/flutter-action@v2
86-
- name: Build
87-
run: flutter build web --base-href /${{ github.ref_name }}/
88-
working-directory: packages/isar_inspector
89-
- name: Deploy to GitHub Pages
90-
uses: JamesIves/github-pages-deploy-action@v4
91-
with:
92-
folder: packages/isar_inspector/build/web
93-
repository-name: isar/inspector
94-
token: ${{ secrets.TOKEN }}
95-
target-folder: ${{ github.ref_name }}
96-
clean: false
79+
# build_inspector:
80+
# name: Build Inspector
81+
# needs: testlab
82+
# runs-on: ubuntu-latest
83+
# steps:
84+
# - uses: actions/checkout@v3
85+
# - uses: subosito/flutter-action@v2
86+
# - name: Build
87+
# run: flutter build web --base-href /${{ github.ref_name }}/
88+
# working-directory: packages/isar_inspector
89+
# - name: Deploy to GitHub Pages
90+
# uses: JamesIves/github-pages-deploy-action@v4
91+
# with:
92+
# folder: packages/isar_inspector/build/web
93+
# repository-name: isar/inspector
94+
# token: ${{ secrets.TOKEN }}
95+
# target-folder: ${{ github.ref_name }}
96+
# clean: false
9797

9898
# publish:
9999
# name: Publish

packages/isar/lib/src/isar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ abstract class Isar {
1818
}
1919

2020
/// The version of the Isar library.
21-
static const version = '3.1.1';
21+
static const version = '3.1.3';
2222

2323
/// Smallest valid id.
2424
static const Id minId = isarMinId;

packages/isar/pubspec.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name: isar
22
description: Extremely fast, easy to use, and fully async NoSQL database for Flutter.
3-
version: 3.1.1
3+
version: 3.1.3
44
repository: https://github.com/isar/isar/tree/main/packages/isar
55
homepage: https://github.com/isar/isar
66
issue_tracker: https://github.com/isar/isar/issues
77
documentation: https://isar.dev
8+
publish_to: https://isar-community.dev/
89
funding:
910
- https://github.com/sponsors/leisim/
1011

packages/isar_flutter_libs/pubspec.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: isar_flutter_libs
22
description: Isar Core binaries for the Isar Database. Needs to be included for Flutter apps.
3-
version: 3.1.1
3+
version: 3.1.3
44
repository: https://github.com/isar/isar
55
homepage: https://isar.dev
6+
publish_to: https://isar-community.dev/
67

78
environment:
89
sdk: ">=2.17.0 <3.0.0"
@@ -11,7 +12,9 @@ environment:
1112
dependencies:
1213
flutter:
1314
sdk: flutter
14-
isar: 3.1.1
15+
isar:
16+
version: 3.1.3
17+
hosted: https://isar-community.dev/
1518

1619
flutter:
1720
plugin:

packages/isar_generator/pubspec.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: isar_generator
22
description: Code generator for the Isar Database. Finds classes annotated with @Collection.
3-
version: 3.1.1
3+
version: 3.1.3
44
repository: https://github.com/isar/isar
55
homepage: https://isar.dev
6+
publish_to: https://isar-community.dev/
67

78
environment:
89
sdk: ">=2.17.0 <3.0.0"
@@ -13,7 +14,9 @@ dependencies:
1314
dart_style: ^2.2.3
1415
dartx: ^1.1.0
1516
glob: ^2.0.2
16-
isar: 3.1.1
17+
isar:
18+
version: 3.1.3
19+
hosted: https://isar-community.dev/
1720
path: ^1.8.1
1821
source_gen: ^1.2.2
1922
xxh3: ^1.0.1

tool/download_binaries.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
version=`dart packages/isar/tool/get_version.dart`
4-
github="https://github.com/isar/isar/releases/download/${version}"
4+
github="https://github.com/mrclauss/isar/releases/download/${version}"
55

66

77
curl "${github}/libisar_android_arm64.so" -o packages/isar_flutter_libs/android/src/main/jniLibs/arm64-v8a/libisar.so --create-dirs -L -f

0 commit comments

Comments
 (0)