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

Commit

Permalink
v0.15.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerbrandl committed Mar 26, 2021
1 parent 62d9aa8 commit ff7fbaf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
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.15.6-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.15.8-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)

`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:krangl:0.15.7"
implementation "com.github.holgerbrandl:krangl:0.15.8"
}
```
Declaring the repository is purely optional as it is the default already.
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
//}

//http://stackoverflow.com/questions/34377367/why-is-gradle-install-replacing-my-version-with-unspecified
group 'com.github.holgerbrandl.krangl'
version '0.16-SNAPSHOT'
//version '0.15.7'
//group 'com.github.holgerbrandl'
//version '0.16-SNAPSHOT'
version '0.15.8'


ext {
PUBLISH_GROUP_ID = "com.github.holgerbrandl.krangl"
PUBLISH_GROUP_ID = "com.github.holgerbrandl"
PUBLISH_VERSION = version
PUBLISH_ARTIFACT_ID = 'krangl'
}
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.15.6-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.15.8-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:krangl:0.15.7"
implementation "com.github.holgerbrandl:krangl:0.15.8"
}
```
Declaring the repository is purely optional as it is the default already.
Expand Down
11 changes: 9 additions & 2 deletions src/test/kotlin/krangl/misc/PatchVersion.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,19 @@ val newVersion = args[0]

fun PatchVersion.fixInFile(file: File) {
val transformedSetup: String = file.readLines().map {
val prefix: String = """implementation "de.mpicbg.scicomp:krangl:"""
val prefix: String = """ implementation "com.github.holgerbrandl:krangl:"""
if (it.startsWith(prefix)) {
"""implementation "de.mpicbg.scicomp:krangl:${newVersion}""""
""" implementation "com.github.holgerbrandl:krangl:${newVersion}""""
} else {
it
}

// todo also fix badge here
// if(it.contains("Central-[0-9.]*-orange".toRegex())){
// it
// }else{
it
// }
}.joinToString(System.lineSeparator())


Expand Down

0 comments on commit ff7fbaf

Please sign in to comment.