Skip to content

Commit

Permalink
Merge v1.0.24
Browse files Browse the repository at this point in the history
- intl: ^0.18.0
- lints: ^2.0.1
- test: ^1.22.1
- coverage: ^1.6.1
  • Loading branch information
gmpassos authored Dec 21, 2022
2 parents 187e8ee + 3fc0d82 commit 0fa9d2b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.0.24

- intl: ^0.18.0
- lints: ^2.0.1
- test: ^1.22.1
- coverage: ^1.6.1

## 1.0.23

- `DynamicNumber`, `DynamicInt`, `Decimal`:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![pub package](https://img.shields.io/pub/v/statistics.svg?logo=dart&logoColor=00b9fc)](https://pub.dev/packages/statistics)
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
[![Codecov](https://img.shields.io/codecov/c/github/gmpassos/statistics)](https://app.codecov.io/gh/gmpassos/statistics)
[![CI](https://img.shields.io/github/workflow/status/gmpassos/statistics/Dart%20CI/master?logo=github-actions&logoColor=white)](https://github.com/gmpassos/statistics/actions)
[![Dart CI](https://github.com/gmpassos/statistics/actions/workflows/dart.yml/badge.svg?branch=master)](https://github.com/gmpassos/statistics/actions/workflows/dart.yml)
[![GitHub Tag](https://img.shields.io/github/v/tag/gmpassos/statistics?logo=git&logoColor=white)](https://github.com/gmpassos/statistics/releases)
[![New Commits](https://img.shields.io/github/commits-since/gmpassos/statistics/latest?logo=git&logoColor=white)](https://github.com/gmpassos/statistics/network)
[![Last Commits](https://img.shields.io/github/last-commit/gmpassos/statistics?logo=git&logoColor=white)](https://github.com/gmpassos/statistics/commits/master)
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: statistics
description: Statistics package for easy and efficient data manipulation with built-in Bayesian Network (Bayes Net), many mathematical functions and tools.
version: 1.0.23
version: 1.0.24
homepage: https://github.com/gmpassos/statistics

environment:
sdk: '>=2.14.0 <3.0.0'

dependencies:
intl: ^0.17.0
intl: ^0.18.0
collection: ^1.16.0
data_serializer: ^1.0.7

dev_dependencies:
lints: ^2.0.0
test: ^1.21.4
lints: ^2.0.1
test: ^1.22.1
dependency_validator: ^3.2.2
coverage: ^1.2.0
coverage: ^1.6.1

#dependency_overrides:
# data_serializer:
Expand Down
3 changes: 1 addition & 2 deletions statistics.iml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/coverage" />
<excludeFolder url="file://$MODULE_DIR$/.pub" />
<excludeFolder url="file://$MODULE_DIR$/.dart_tool" />
<excludeFolder url="file://$MODULE_DIR$/build" />
Expand Down
8 changes: 4 additions & 4 deletions test/statistics_base_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ void main() {
});

group('StandardDeviation', () {
_testStandardDeviationComputer<N, D>(StandardDeviationComputer stdv) {
testStandardDeviationComputer<N, D>(StandardDeviationComputer stdv) {
expect(stdv.addAll([10, 20, 30]).standardDeviationAsDouble,
equals(8.16496580927726));
expect(stdv.isEmpty, isFalse);
Expand Down Expand Up @@ -548,17 +548,17 @@ void main() {

test('num', () {
var stdv = StandardDeviationComputerNum();
_testStandardDeviationComputer(stdv);
testStandardDeviationComputer(stdv);
});

test('BigInt', () {
var stdv = StandardDeviationComputerBigInt();
_testStandardDeviationComputer(stdv);
testStandardDeviationComputer(stdv);
});

test('DynamicNumber', () {
var stdv = StandardDeviationComputerDynamicNumber();
_testStandardDeviationComputer(stdv);
testStandardDeviationComputer(stdv);
});
});
}

0 comments on commit 0fa9d2b

Please sign in to comment.