Skip to content

Commit ec4d266

Browse files
committed
Fix version again
1 parent 4c38cb3 commit ec4d266

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

api/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: setonix_api
22
description: The Linwood Setonix API
3-
version: 0.2.0
3+
version: 0.3.0
44
publish_to: none
55
# repository: https://github.com/my_org/my_repo
66

app/AppImageBuilder.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ AppDir:
1414
id: dev.linwood.setonix
1515
name: Linwood Setonix
1616
icon: dev.linwood.setonix
17-
version: 0.2.0
17+
version: 0.3.0
1818
exec: setonix
1919
exec_args: $@
2020
apt:

app/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ packages:
10231023
path: "../api"
10241024
relative: true
10251025
source: path
1026-
version: "0.2.0"
1026+
version: "0.3.0"
10271027
share_plus:
10281028
dependency: transitive
10291029
description:

app/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: Play games without internet
1111
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1212
# Read more about iOS versioning at
1313
# 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
1515
publish_to: none
1616

1717
environment:

server/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ packages:
457457
path: "../api"
458458
relative: true
459459
source: path
460-
version: "0.2.0"
460+
version: "0.3.0"
461461
shelf:
462462
dependency: transitive
463463
description:

server/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: setonix_server
22
description: The Linwood Setonix game server
3-
version: 0.1.0
3+
version: 0.3.0
44
publish_to: none
55

66
environment:

tools/set_version.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ Future<void> main(List<String> args) async {
6060
print(
6161
'Updating the version in the api pubspec.yaml from $lastVersion to $newVersion');
6262
// 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();
6565
serverContent =
6666
serverContent.replaceAll(RegExp(r'version: .+'), 'version: $version');
6767
await serverPubspec.writeAsString(serverContent);

0 commit comments

Comments
 (0)