From ac15257d68f53dcb8cbfb6fedd158e6f3a85269d Mon Sep 17 00:00:00 2001 From: w2sv Date: Wed, 28 Feb 2024 22:06:30 +0100 Subject: [PATCH] 0.1.3 --- .github/workflows/build.yaml | 4 ++-- CHANGELOG.md | 6 +++++- Makefile | 4 ++-- lib/src/dataframe.dart | 4 ++-- pubspec.yaml | 10 +++++----- 5 files changed, 16 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cd4d3b5..c8b9a44 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,13 +1,13 @@ name: Build -on: [push, pull_request] +on: [ push, pull_request ] jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dart-lang/setup-dart@v1.4 - name: Install dependencies diff --git a/CHANGELOG.md b/CHANGELOG.md index f74beaa..d29d82b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,4 +33,8 @@ Add `toCsv` method. Improve method documentation. Remove the rather pointless `s # 0.1.2 -- Update jiffy as well as the dart sdk version range \ No newline at end of file +- Update jiffy as well as the dart sdk version range + +# 0.1.3 + +- Update dart sdk to >=2.13.0 <=3.3.0, csv to 6.0.0 \ No newline at end of file diff --git a/Makefile b/Makefile index 92faf30..c5a6d2e 100644 --- a/Makefile +++ b/Makefile @@ -11,8 +11,8 @@ run-tests: @dart pub global run coverage:format_coverage --packages=.dart_tool/package_config.json --report-on=lib --lcov -o ./coverage/lcov.info -i ./coverage coverage-html: - genhtml coverage/lcov.info -o coverage/html - open coverage/html/index.html + @genhtml coverage/lcov.info -o coverage/html + @open coverage/html/index.html # $$$$$$$$$ Publishing $$$$$$$$$$ diff --git a/lib/src/dataframe.dart b/lib/src/dataframe.dart index c8a4539..67ecc80 100644 --- a/lib/src/dataframe.dart +++ b/lib/src/dataframe.dart @@ -47,8 +47,8 @@ class DataFrame extends ListBase { } /// Builds a dataframe from a list of [rowMaps], e.g. - /// [{'col1': 420, 'col2': 69}, - /// {'col1': 666, 'col2': 1470}] + /// \[{'col1': 420, 'col2': 69}, + /// {'col1': 666, 'col2': 1470}\]. DataFrame.fromRowMaps(List rowMaps) : this._default(rowMaps.first.keys.toList(), rowMaps.map((e) => e.values.toList()).toList()); diff --git a/pubspec.yaml b/pubspec.yaml index 07bc1a2..9983438 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,16 +1,16 @@ name: koala description: A poor man's version of a pandas Dataframe. Collect, access & manipulate related data. repository: https://github.com/w2sv/koala -version: 0.1.2 +version: 0.1.3 environment: - sdk: '>=2.13.0 <=3.0.3' + sdk: '>=2.13.0 <=3.3.0' dependencies: collection: ^1.16.0 - csv: ^5.0.1 + csv: ^6.0.0 jiffy: ^6.0.0 dev_dependencies: - coverage: ^1.6.0 - test: ^1.21.5 \ No newline at end of file + coverage: ^1.7.2 + test: ^1.25.2 \ No newline at end of file