diff --git a/CHANGELOG.md b/CHANGELOG.md index d6a39f2..28558b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.3.0 +- Add scale animation when money balance changes +- Add free parking money & salary +- Add native splash screen +- Add page with form to create and customize new game (adjust salary, starting capital etc.) +- Fix bug that does not allow you to get more money from the bank than you currently have (#7) +- Refactor authentication, user and banking logic + # 0.2.0 - Use modal bottom sheet for transactions - Improve game screen UI diff --git a/lib/app_info_screen.dart b/lib/app_info_screen.dart index 294d462..a6a11bc 100644 --- a/lib/app_info_screen.dart +++ b/lib/app_info_screen.dart @@ -11,7 +11,7 @@ class AppInfoScreen extends StatelessWidget { title: const Text('Monopoly Banking'), ), body: const Text( - 'Version 0.2.0\n' + 'Version 0.3.0\n' 'Monopoly Banking\n\n' 'Made by Jens Becker\n' 'jensbecker.dev\n', diff --git a/pubspec.yaml b/pubspec.yaml index dadda84..f53d4ae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: monopoly_banking description: A cloud-based monopoly banking app. publish_to: 'none' -version: 0.2.0+4 +version: 0.3.0+5 environment: sdk: ">=2.12.0 <3.0.0"