File tree 4 files changed +38
-24
lines changed 4 files changed +38
-24
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.1.3
2
+
3
+ - Maintenance release, mainly adapts build dependencies
4
+
1
5
## 3.1.0+1
2
6
3
7
### Fixes
Original file line number Diff line number Diff line change @@ -65,35 +65,22 @@ Holy smokes you're here! Let's get started on using the coolest Flutter database
65
65
### 1. Add to pubspec.yaml
66
66
67
67
``` yaml
68
- isar_version : &isar_version 3.1.1 # define the version to be used
68
+ isar_version : &isar_version 3.1.3 # define the version to be used
69
69
70
70
dependencies :
71
- isar : *isar_version
72
- isar_flutter_libs : *isar_version # contains Isar Core
71
+ isar :
72
+ version : *isar_version
73
+ hosted : https://isar-community.dev/
74
+ isar_flutter_libs : # contains Isar Core
75
+ version : *isar_version
76
+ hosted : https://isar-community.dev/
73
77
74
78
dev_dependencies :
75
- isar_generator : *isar_version
79
+ isar_generator :
80
+ version : *isar_version
81
+ hosted : https://isar-community.dev/
76
82
build_runner : any
77
83
78
- # Add overrides to use the community fork
79
- dependency_overrides :
80
- isar :
81
- git :
82
- url : https://github.com/isar-community/isar.git
83
- ref : *isar_version
84
- path : packages/isar
85
-
86
- isar_flutter_libs :
87
- git :
88
- url : https://github.com/isar-community/isar.git
89
- ref : *isar_version
90
- path : packages/isar_flutter_libs
91
-
92
- isar_generator :
93
- git :
94
- url : https://github.com/isar-community/isar.git
95
- ref : *isar_version
96
- path : packages/isar_generator
97
84
```
98
85
99
86
### 2. Annotate a Collection
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
version=` dart packages/isar/tool/get_version.dart`
4
- github=" https://github.com/mrclauss /isar/releases/download/${version} "
4
+ github=" https://github.com/isar-community /isar/releases/download/${version} "
5
5
6
6
7
7
curl " ${github} /libisar_android_arm64.so" -o packages/isar_flutter_libs/android/src/main/jniLibs/arm64-v8a/libisar.so --create-dirs -L -f
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Publishes the packages for a release to isar-community.dev using the artifacts from github
4
+ # Prerequisite: unpub authenticated and token added:
5
+ # `unpub_auth login && unpub_auth get | dart pub token add https://isar-community.dev/`
6
+ #
7
+
8
+ set -o errexit
9
+ pushd packages/isar
10
+ dart pub get
11
+ popd
12
+ sh tool/download_binaries.sh
13
+ # dart pub token add --env-var=PUB_JSON https://isar-community.dev/
14
+ pushd packages/isar
15
+ dart pub publish --force
16
+ popd
17
+ pushd packages/isar_generator
18
+ dart pub publish --force
19
+ popd
20
+ pushd packages/isar_flutter_libs
21
+ dart pub publish --force
22
+ popd
23
+
You can’t perform that action at this time.
0 commit comments