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

Commit

Permalink
v0.18 release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerbrandl committed May 30, 2022
1 parent da4c610 commit 29d3ce1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
krangl Release History
======================

v0.18-SNAPSHOT
v0.18
-----

* Added support for arrow (Thanks to **[@Kopilov](https://github.com/Kopilov)** for contributing [PR 150](https://github.com/holgerbrandl/krangl/pull/150))
* Improved support for large Excels tables (Thanks to **[@ayvazj](https://github.com/ayvazj)** for contributing [PR 126](https://github.com/holgerbrandl/krangl/pull/126))
* Added second version of `unfold()` to work with property accessors instead
```kotlin
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# krangl

[ ![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)
[ ![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)

`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.

Expand Down Expand Up @@ -32,7 +32,7 @@ repositories {
}
dependencies {
implementation "com.github.holgerbrandl:krangl:0.17.3"
implementation "com.github.holgerbrandl:krangl:0.18"
}
```
Declaring the repository is purely optional as it is the default already.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ test {
//http://stackoverflow.com/questions/34377367/why-is-gradle-install-replacing-my-version-with-unspecified
group 'com.github.holgerbrandl'
//version '0.16.95'
version '0.17.4'
version '0.18'



Expand Down
2 changes: 1 addition & 1 deletion docs/krangl_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export KRANGL_HOME=/d/projects/misc/krangl
#########################################################################
## Run tests locally

cd $KRANGL_HOME
cd $KRANGL_HOME || exit 1

./gradlew check

Expand Down
4 changes: 2 additions & 2 deletions docs/userguide/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[ ![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)
[ ![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)

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

Expand Down Expand Up @@ -40,7 +40,7 @@ repositories {
}
dependencies {
implementation "com.github.holgerbrandl:krangl:0.17.3"
implementation "com.github.holgerbrandl:krangl:0.18"
}
```
Declaring the repository is purely optional as it is the default already.
Expand Down

0 comments on commit 29d3ce1

Please sign in to comment.