Skip to content
This repository was archived by the owner on Jan 28, 2023. It is now read-only.

Commit 29d3ce1

Browse files
committed
v0.18 release
1 parent da4c610 commit 29d3ce1

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
krangl Release History
22
======================
33

4-
v0.18-SNAPSHOT
4+
v0.18
55
-----
66

7+
* Added support for arrow (Thanks to **[@Kopilov](https://github.com/Kopilov)** for contributing [PR 150](https://github.com/holgerbrandl/krangl/pull/150))
78
* Improved support for large Excels tables (Thanks to **[@ayvazj](https://github.com/ayvazj)** for contributing [PR 126](https://github.com/holgerbrandl/krangl/pull/126))
89
* Added second version of `unfold()` to work with property accessors instead
910
```kotlin

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# krangl
22

3-
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.17.3-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
3+
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.18-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
44

55
`krangl` is a {K}otlin library for data w{rangl}ing. By implementing a grammar of data manipulation using a modern functional-style API, it allows to filter, transform, aggregate and reshape tabular data.
66

@@ -32,7 +32,7 @@ repositories {
3232
}
3333
3434
dependencies {
35-
implementation "com.github.holgerbrandl:krangl:0.17.3"
35+
implementation "com.github.holgerbrandl:krangl:0.18"
3636
}
3737
```
3838
Declaring the repository is purely optional as it is the default already.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ test {
100100
//http://stackoverflow.com/questions/34377367/why-is-gradle-install-replacing-my-version-with-unspecified
101101
group 'com.github.holgerbrandl'
102102
//version '0.16.95'
103-
version '0.17.4'
103+
version '0.18'
104104

105105

106106

docs/krangl_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export KRANGL_HOME=/d/projects/misc/krangl
1111
#########################################################################
1212
## Run tests locally
1313

14-
cd $KRANGL_HOME
14+
cd $KRANGL_HOME || exit 1
1515

1616
./gradlew check
1717

docs/userguide/docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.17.3-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl.krangl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
1+
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.18-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl.krangl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
22

33
This is the manual of [krangl](https://github.com/holgerbrandl/krangl).
44

@@ -40,7 +40,7 @@ repositories {
4040
}
4141
4242
dependencies {
43-
implementation "com.github.holgerbrandl:krangl:0.17.3"
43+
implementation "com.github.holgerbrandl:krangl:0.18"
4444
}
4545
```
4646
Declaring the repository is purely optional as it is the default already.

0 commit comments

Comments
 (0)