File tree Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 4.0.0-dev.15
2
+
3
+ Switch deployment to isar-community
4
+
5
+ ### Enhancements
6
+
7
+ Change encryption key
8
+
1
9
## 4.0.0-dev.14
2
10
3
11
⚠️ ISAR V4 IS NOT READY FOR PRODUCTION USE ⚠️
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ repository: https://github.com/isar-community/isar/tree/main/packages/isar
5
5
homepage : https://github.com/isar-community/isar
6
6
issue_tracker : https://github.com/isar-community/isar/issues
7
7
documentation : https://isar.dev
8
+ publish_to : https://isar-community.dev/
8
9
funding :
9
10
- https://github.com/sponsors/simc/
10
11
topics :
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ description: Isar Core binaries for the Isar Database. Needs to be included for
3
3
version : 0.0.0-placeholder
4
4
repository : https://github.com/isar-community/isar
5
5
homepage : https://isar.dev
6
+ publish_to : https://isar-community.dev/
6
7
7
8
environment :
8
9
sdk : " >=3.1.0 <4.0.0"
@@ -11,7 +12,9 @@ environment:
11
12
dependencies :
12
13
flutter :
13
14
sdk : flutter
14
- isar : 0.0.0-placeholder
15
+ isar :
16
+ version : 0.0.0-placeholder
17
+ hosted : https://isar-community.dev/
15
18
16
19
flutter :
17
20
plugin :
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
+ if [ " $TAG " == " " ]; then
10
+ echo " Define TAG to use"
11
+ exit 1
12
+ fi
13
+ find . -type f -exec sed -i " s/0.0.0-placeholder/$TAG /g" {} +
14
+ pushd packages/isar
15
+ dart pub get
16
+ popd
17
+ sh tool/download_binaries.sh
18
+ # dart pub token add --env-var=PUB_JSON https://isar-community.dev/
19
+ pushd packages/isar
20
+ dart pub publish --force
21
+ popd
22
+ pushd packages/isar_flutter_libs
23
+ dart pub publish --force
24
+ popd
25
+
You can’t perform that action at this time.
0 commit comments