Fix readme properties in root project readme

This commit is contained in:
Alexander Nozik 2021-02-22 20:34:13 +03:00
parent 7d666cb6c7
commit a7f4c541f4
3 changed files with 3 additions and 2 deletions

View File

@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security
## [0.8.0]
### Added
- Ktor version to versions

View File

@ -8,7 +8,7 @@ plugins {
}
group = "ru.mipt.npm"
version = "0.8.0"
version = "0.8.1"
description = "Build tools for DataForge and kscience projects"

View File

@ -79,7 +79,7 @@ class KScienceReadmeExtension(val project: Project) {
*/
fun featuresString(itemPrefix: String = " - ", pathPrefix: String = "") = buildString {
features.forEach {
appendLine("$itemPrefix[${it.name}]($pathPrefix${it.ref ?: "#"}) : ${it.description}")
appendln("$itemPrefix[${it.name}]($pathPrefix${it.ref ?: "#"}) : ${it.description}")
}
}