File tree 7 files changed +8
-8
lines changed
7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
name : setonix_api
2
2
description : The Linwood Setonix API
3
- version : 0.2 .0
3
+ version : 0.3 .0
4
4
publish_to : none
5
5
# repository: https://github.com/my_org/my_repo
6
6
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ AppDir:
14
14
id : dev.linwood.setonix
15
15
name : Linwood Setonix
16
16
icon : dev.linwood.setonix
17
- version : 0.2 .0
17
+ version : 0.3 .0
18
18
exec : setonix
19
19
exec_args : $@
20
20
apt :
Original file line number Diff line number Diff line change @@ -1023,7 +1023,7 @@ packages:
1023
1023
path: "../api"
1024
1024
relative: true
1025
1025
source: path
1026
- version: "0.2 .0"
1026
+ version: "0.3 .0"
1027
1027
share_plus:
1028
1028
dependency: transitive
1029
1029
description:
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ description: Play games without internet
11
11
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
12
12
# Read more about iOS versioning at
13
13
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14
- version : 0.2 .0+4
14
+ version : 0.3 .0+4
15
15
publish_to : none
16
16
17
17
environment :
Original file line number Diff line number Diff line change @@ -457,7 +457,7 @@ packages:
457
457
path: "../api"
458
458
relative: true
459
459
source: path
460
- version: "0.2 .0"
460
+ version: "0.3 .0"
461
461
shelf:
462
462
dependency: transitive
463
463
description:
Original file line number Diff line number Diff line change 1
1
name : setonix_server
2
2
description : The Linwood Setonix game server
3
- version : 0.1 .0
3
+ version : 0.3 .0
4
4
publish_to : none
5
5
6
6
environment :
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ Future<void> main(List<String> args) async {
60
60
print (
61
61
'Updating the version in the api pubspec.yaml from $lastVersion to $newVersion ' );
62
62
// Update server
63
- final serverPubspec = File ('api /pubspec.yaml' );
64
- var serverContent = await apiPubspec .readAsString ();
63
+ final serverPubspec = File ('server /pubspec.yaml' );
64
+ var serverContent = await serverPubspec .readAsString ();
65
65
serverContent =
66
66
serverContent.replaceAll (RegExp (r'version: .+' ), 'version: $version ' );
67
67
await serverPubspec.writeAsString (serverContent);
You can’t perform that action at this time.
0 commit comments