Skip to content

Commit b64fe93

Browse files
committed
chore: add extra files
1 parent ae6466c commit b64fe93

File tree

9 files changed

+39
-32
lines changed

9 files changed

+39
-32
lines changed

.github/workflows/release-please.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
- name: Bootstrap workspace
5252
run: melos bootstrap
5353

54-
- name: Run version update hook
55-
run: melos run update-version
54+
# - name: Run version update hook
55+
# run: melos run update-version
5656

57-
- name: Run tests
58-
run: melos run test --no-select
57+
# - name: Run tests
58+
# run: melos run test --no-select
5959

6060
- name: Setup pub credentials
6161
run: |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.4.4';
1+
const version = '2.4.4'; // {x-release-please-version}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.15.0';
1+
const version = '2.15.0'; // {x-release-please-version}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.4.2';
1+
const version = '2.4.2'; // {x-release-please-version}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.5.2';
1+
const version = '2.5.2'; // {x-release-please-version}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.4.1';
1+
const version = '2.4.1'; // {x-release-please-version}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.9.1';
1+
const version = '2.9.1'; // {x-release-please-version}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.10.1';
1+
const version = '2.10.1'; // {x-release-please-version}

release-please-config.json

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,58 @@
55
"packages/functions_client": {
66
"release-type": "dart",
77
"package-name": "functions_client",
8-
"changelog-path": "CHANGELOG.md"
8+
"changelog-path": "CHANGELOG.md",
9+
"extra-files": [
10+
"lib/src/version.dart"
11+
]
912
},
1013
"packages/gotrue": {
1114
"release-type": "dart",
1215
"package-name": "gotrue",
13-
"changelog-path": "CHANGELOG.md"
16+
"changelog-path": "CHANGELOG.md",
17+
"extra-files": [
18+
"lib/src/version.dart"
19+
]
1420
},
1521
"packages/postgrest": {
1622
"release-type": "dart",
1723
"package-name": "postgrest",
18-
"changelog-path": "CHANGELOG.md"
24+
"changelog-path": "CHANGELOG.md",
25+
"extra-files": [
26+
"lib/src/version.dart"
27+
]
1928
},
2029
"packages/realtime_client": {
2130
"release-type": "dart",
2231
"package-name": "realtime_client",
23-
"changelog-path": "CHANGELOG.md"
32+
"changelog-path": "CHANGELOG.md",
33+
"extra-files": [
34+
"lib/src/version.dart"
35+
]
2436
},
2537
"packages/storage_client": {
2638
"release-type": "dart",
2739
"package-name": "storage_client",
28-
"changelog-path": "CHANGELOG.md"
40+
"changelog-path": "CHANGELOG.md",
41+
"extra-files": [
42+
"lib/src/version.dart"
43+
]
2944
},
3045
"packages/supabase": {
3146
"release-type": "dart",
3247
"package-name": "supabase",
33-
"changelog-path": "CHANGELOG.md"
48+
"changelog-path": "CHANGELOG.md",
49+
"extra-files": [
50+
"lib/src/version.dart"
51+
]
3452
},
3553
"packages/supabase_flutter": {
3654
"release-type": "dart",
3755
"package-name": "supabase_flutter",
38-
"changelog-path": "CHANGELOG.md"
56+
"changelog-path": "CHANGELOG.md",
57+
"extra-files": [
58+
"lib/src/version.dart"
59+
]
3960
},
4061
"packages/yet_another_json_isolate": {
4162
"release-type": "dart",
@@ -58,19 +79,5 @@
5879
"packages/yet_another_json_isolate"
5980
]
6081
}
61-
],
62-
"group-pull-request-title-pattern": "chore(release): release ${version}",
63-
"pull-request-title-pattern": "chore(${scope}): release ${version}",
64-
"changelog-sections": [
65-
{"type": "feat", "section": "Features"},
66-
{"type": "fix", "section": "Bug Fixes"},
67-
{"type": "chore", "section": "Miscellaneous Chores", "hidden": false},
68-
{"type": "docs", "section": "Documentation"},
69-
{"type": "style", "section": "Styles", "hidden": true},
70-
{"type": "refactor", "section": "Code Refactoring"},
71-
{"type": "perf", "section": "Performance Improvements"},
72-
{"type": "test", "section": "Tests", "hidden": true},
73-
{"type": "build", "section": "Build System", "hidden": true},
74-
{"type": "ci", "section": "Continuous Integration", "hidden": true}
7582
]
7683
}

0 commit comments

Comments
 (0)