Skip to content

Commit 1a5b519

Browse files
authored
release(app): v7.0.0+70000 (#1702)
* release(app): v7.0.0+70000 * fix: skip legacy content in landing e2e test
1 parent 5033527 commit 1a5b519

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

mobile-app/integration_test/learn/learn_landing.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ void main() {
2626

2727
List<Map<String, dynamic>> superBlocks = [];
2828
for (var stage in superBlockStages.keys) {
29+
if (stage == 'legacy') {
30+
continue;
31+
}
2932
List stageBlocks = superBlockStages[stage];
3033
for (var superBlock in stageBlocks) {
3134
if (!superBlock['dashedName'].toString().contains('full-stack')) {

mobile-app/lib/service/firebase/remote_config_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class RemoteConfigService {
2424
),
2525
);
2626
await remoteConfig.setDefaults({
27-
'min_app_version': '6.0.1',
27+
'min_app_version': '7.0.0',
2828
});
2929

3030
await remoteConfig.fetchAndActivate();

mobile-app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: freecodecamp
22
description: freecodecamp.org app.
33
publish_to: none
4-
version: 6.1.0+60100
4+
version: 7.0.0+70000
55
environment:
66
sdk: ">=3.0.0 <4.0.0"
77
dependencies:

0 commit comments

Comments
 (0)