Skip to content

Commit ac15257

Browse files
committed
0.1.3
1 parent ad1017d commit ac15257

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Build
22

3-
on: [push, pull_request]
3+
on: [ push, pull_request ]
44

55
jobs:
66
build:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- uses: dart-lang/setup-dart@v1.4
1212

1313
- name: Install dependencies

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,8 @@ Add `toCsv` method. Improve method documentation. Remove the rather pointless `s
3333

3434
# 0.1.2
3535

36-
- Update jiffy as well as the dart sdk version range
36+
- Update jiffy as well as the dart sdk version range
37+
38+
# 0.1.3
39+
40+
- Update dart sdk to >=2.13.0 <=3.3.0, csv to 6.0.0

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ run-tests:
1111
@dart pub global run coverage:format_coverage --packages=.dart_tool/package_config.json --report-on=lib --lcov -o ./coverage/lcov.info -i ./coverage
1212

1313
coverage-html:
14-
genhtml coverage/lcov.info -o coverage/html
15-
open coverage/html/index.html
14+
@genhtml coverage/lcov.info -o coverage/html
15+
@open coverage/html/index.html
1616

1717
# $$$$$$$$$ Publishing $$$$$$$$$$
1818

lib/src/dataframe.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ class DataFrame extends ListBase<RecordRow> {
4747
}
4848

4949
/// Builds a dataframe from a list of [rowMaps], e.g.
50-
/// [{'col1': 420, 'col2': 69},
51-
/// {'col1': 666, 'col2': 1470}]
50+
/// \[{'col1': 420, 'col2': 69},
51+
/// {'col1': 666, 'col2': 1470}\].
5252
DataFrame.fromRowMaps(List<RecordRowMap> rowMaps)
5353
: this._default(rowMaps.first.keys.toList(),
5454
rowMaps.map((e) => e.values.toList()).toList());

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: koala
22
description: A poor man's version of a pandas Dataframe. Collect, access & manipulate related data.
33
repository: https://github.com/w2sv/koala
4-
version: 0.1.2
4+
version: 0.1.3
55

66
environment:
7-
sdk: '>=2.13.0 <=3.0.3'
7+
sdk: '>=2.13.0 <=3.3.0'
88

99
dependencies:
1010
collection: ^1.16.0
11-
csv: ^5.0.1
11+
csv: ^6.0.0
1212
jiffy: ^6.0.0
1313

1414
dev_dependencies:
15-
coverage: ^1.6.0
16-
test: ^1.21.5
15+
coverage: ^1.7.2
16+
test: ^1.25.2

0 commit comments

Comments
 (0)