Skip to content

Commit

Permalink
0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
w2sv committed Feb 28, 2024
1 parent ad1017d commit ac15257
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
- 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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 $$$$$$$$$$

Expand Down
4 changes: 2 additions & 2 deletions lib/src/dataframe.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ class DataFrame extends ListBase<RecordRow> {
}

/// 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<RecordRowMap> rowMaps)
: this._default(rowMaps.first.keys.toList(),
rowMaps.map((e) => e.values.toList()).toList());
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
coverage: ^1.7.2
test: ^1.25.2

0 comments on commit ac15257

Please sign in to comment.