Skip to content

Commit

Permalink
version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultzanini committed Apr 19, 2021
1 parent 50d3a45 commit a8c55cb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog


## [0.6.1](https://github.com/tyrcord/matex_dart/releases/tag/0.6.1) (2021-04-19)

### Fixes

- Fixed broken package.

## [0.6.0](https://github.com/tyrcord/matex_dart/releases/tag/0.6.0) (2021-04-19)

### Features
Expand All @@ -8,7 +15,6 @@
- Added exitDiscountAmount property to the profit and loss calculator.
- Added exitDiscountPercentage property to the profit and loss calculator.


## [0.5.0](https://github.com/tyrcord/matex_dart/releases/tag/0.5.0) (2021-04-15)

### Features
Expand Down
11 changes: 11 additions & 0 deletions lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,15 @@ class MatexApp {
validators: validators,
);
}

MatexProfitAndLossCalculator profitAndLoss({
MatexBaseCoreState? state,
List<MatexStateValidator>? validators,
}) {
return matexProfitAndLoss(
config: config,
defaultState: state,
validators: validators,
);
}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: matex_dart
version: 0.6.0
version: 0.6.1
description: Set of Forex calculators.
homepage: https://github.com/tyrcord/matex_dart
issue_tracker: https://github.com/tyrcord/matex_dart/issues
Expand Down

0 comments on commit a8c55cb

Please sign in to comment.