Skip to content

Commit

Permalink
release: bump version to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
uchuhimo committed Jan 24, 2021
1 parent dd39ce5 commit 9e959c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ A type-safe cascading configuration library for Kotlin/Java/Android, supporting
- [Create config](#create-config)
- [Add config spec](#add-config-spec)
- [Retrieve value from config](#retrieve-value-from-config)
- [Cast config to value](#cast-config-to-value)
- [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)
Expand Down Expand Up @@ -84,20 +85,20 @@ Konf is modular, you can use different modules for different sources:
<dependency>
<groupId>com.uchuhimo</groupId>
<artifactId>konf</artifactId>
<version>0.23.0</version>
<version>1.0.0</version>
</dependency>
```

### Gradle

```groovy
compile 'com.uchuhimo:konf:0.23.0'
compile 'com.uchuhimo:konf:1.0.0'
```

### Gradle Kotlin DSL

```kotlin
compile(group = "com.uchuhimo", name = "konf", version = "0.23.0")
compile(group = "com.uchuhimo", name = "konf", version = "1.0.0")
```

### Maven (master snapshot)
Expand Down
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ allprojects {
apply(plugin = "com.jfrog.bintray")

group = "com.uchuhimo"
version = "0.23.0"
version = "1.0.0"

repositories {
if (useAliyun) {
Expand Down Expand Up @@ -255,6 +255,9 @@ subprojects {
groupId = projectGroup
artifactId = projectName
version = projectVersion

suppressPomMetadataWarningsFor("testFixturesApiElements")
suppressPomMetadataWarningsFor("testFixturesRuntimeElements")
pom {
name.set(rootProject.name)
description.set(projectDescription)
Expand Down

0 comments on commit 9e959c6

Please sign in to comment.