Skip to content

Commit c878aa8

Browse files
committed
API: Catalog now matches release channel not release-candidate
1 parent 93ac669 commit c878aa8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ jobs:
6262
exit 1
6363
fi
6464
65-
- name: "Check API version for consistency with OFW release-candidate"
65+
- name: "Check API version for consistency with OFW release channel"
6666
run: |
6767
set -e
6868
symbols="targets/$TARGET/api_symbols.csv"
69-
ofw_api="$(curl -s "https://raw.githubusercontent.com/flipperdevices/flipperzero-firmware/release-candidate/${symbols}" | head -n2)"
69+
ofw_api="$(curl -s "https://raw.githubusercontent.com/flipperdevices/flipperzero-firmware/release/${symbols}" | head -n2)"
7070
our_api="$(head -n2 "${symbols}")"
7171
if [ "$our_api" != "$ofw_api" ] ; then
72-
echo API versions aren\'t matching OFW. Please update!
72+
echo API versions aren\'t matching OFW release channel. Please update!
7373
echo API versions are:
7474
echo "Official: $(tail -n1 <<< "$ofw_api")"
7575
echo "Momentum: $(tail -n1 <<< "$our_api")"

targets/f18/api_symbols.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
entry,status,name,type,params
2-
Version,+,87.0,,
2+
Version,+,86.0,,
33
Header,+,applications/services/bt/bt_service/bt.h,,
44
Header,+,applications/services/bt/bt_service/bt_keys_storage.h,,
55
Header,+,applications/services/cli/cli.h,,

targets/f7/api_symbols.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
entry,status,name,type,params
2-
Version,+,87.0,,
2+
Version,+,86.0,,
33
Header,+,applications/drivers/subghz/cc1101_ext/cc1101_ext_interconnect.h,,
44
Header,+,applications/main/archive/helpers/archive_helpers_ext.h,,
55
Header,+,applications/main/subghz/subghz_fap.h,,

0 commit comments

Comments
 (0)