From d10e2405f47c8bcec56771af4bfcb3346bcc7de8 Mon Sep 17 00:00:00 2001 From: uchuhimo Date: Tue, 20 Aug 2019 06:00:23 +0800 Subject: [PATCH] release: bump version to v0.15 --- README.md | 36 ++++++++++++++++++++++++++++++++---- build.gradle.kts | 2 +- 2 files changed, 33 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f938b1c5..0c98d55f 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ A type-safe cascading configuration library for Kotlin/Java, supporting most con - [Create config](#create-config) - [Add config spec](#add-config-spec) - [Retrieve value from config](#retrieve-value-from-config) - - [Check whether value exists in config or not](#check-whether-value-exists-in-config-or-not) + - [Check whether an item exists in config or not](#check-whether-an-item-exists-in-config-or-not) - [Modify value in config](#modify-value-in-config) - [Export value in config as property](#export-value-in-config-as-property) - [Fork from another config](#fork-from-another-config) @@ -48,6 +48,9 @@ A type-safe cascading configuration library for Kotlin/Java, supporting most con - [Supported item types](#supported-item-types) - [Optional features](#optional-features) - [Build from source](#build-from-source) + - [Breaking Changes](#breaking-changes) + - [v0.15](#v015) + - [v0.10](#v010) - [License](#license) ## Prerequisites @@ -58,26 +61,36 @@ A type-safe cascading configuration library for Kotlin/Java, supporting most con This library has been published to [Maven Central](https://search.maven.org/artifact/com.uchuhimo/konf), [JCenter](https://bintray.com/uchuhimo/maven/konf) and [JitPack](https://jitpack.io/#uchuhimo/konf). +Konf is modular, you can use different modules for different sources: + +- `konf-core`: for built-in sources (JSON, properties, map, command line and system environment) +- `konf-hocon`: for built-in + [HOCON](https://github.com/typesafehub/config/blob/master/HOCON.md) sources +- `konf-toml`: for built-in + [TOML](https://github.com/toml-lang/toml) sources +- `konf-xml`: for built-in + XML sources +- `konf-yaml`: for built-in + YAML sources +- `konf-git`: for built-in + Git sources +- `konf`: for all sources mentioned above + ### Maven ```xml com.uchuhimo konf - 0.14.1 + 0.15 ``` ### Gradle ```groovy -compile 'com.uchuhimo:konf:0.14.1' +compile 'com.uchuhimo:konf:0.15' ``` ### Gradle Kotlin DSL ```kotlin -compile(group = "com.uchuhimo", name = "konf", version = "0.14.1") +compile(group = "com.uchuhimo", name = "konf", version = "0.15") ``` ### Maven (master snapshot) @@ -622,6 +635,21 @@ Install library in a local Maven repository for consumption in other projects vi gradlew clean install ``` +## Breaking Changes + +### v0.15 + +After modularized Konf, `hocon`/`toml`/`xml`/`yaml`/`git`/`watchGit` in `DefaultLoaders` become extension properties/functions and should be imported explicitly. +For example, you should import `com.uchuhimo.konf.source.hocon` before using `config.from.hocon`. + +### v0.10 + +APIs in `ConfigSpec` have been updated to support item name's auto-detection, please migrate to new APIs. Here are some examples: + +- `val host = optional("host", "0.0.0.0")` to `val host by optional("0.0.0.0")` +- `val port = required("port")` to `val port by required()` +- `val nextPort = lazy("nextPort") { config -> config[port] + 1 }` to `val nextPort by lazy { config -> config[port] + 1 }` + # License © uchuhimo, 2017-2018. Licensed under an [Apache 2.0](./LICENSE) license. diff --git a/build.gradle.kts b/build.gradle.kts index e4a17599..81606651 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -63,7 +63,7 @@ allprojects { apply(plugin = "com.jfrog.bintray") group = "com.uchuhimo" - version = "0.14.1" + version = "0.15" repositories { aliyunMaven()