Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
hillelcoren committed Dec 23, 2020
1 parent cfe8f1b commit 478dbf2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Constants {
}

// TODO remove version once #46609 is fixed
const String kClientVersion = '5.0.32';
const String kClientVersion = '5.0.33';
const String kMinServerVersion = '5.0.4';

const String kAppName = 'Invoice Ninja';
Expand Down
3 changes: 3 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ void main({bool isTesting = false}) async {
options.release = kClientVersion;
options.beforeSend = (SentryEvent event, {dynamic hint}) {
final state = store.state;
if (!state.account.reportErrors) {
return null;
}
event = event.copyWith(
environment: '${state.environment}'.split('.').last,
extra: <String, dynamic>{
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: invoiceninja_flutter
description: Client for Invoice Ninja
version: 5.0.32+32
version: 5.0.33+33
author: Hillel Coren
homepage: https://invoiceninja.com
documentation: http://docs.invoiceninja.com
Expand Down

0 comments on commit 478dbf2

Please sign in to comment.