Skip to content

Commit

Permalink
Release conditional-1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
icepeppermint committed Jan 1, 2023
1 parent 7a5bd25 commit 6eeec1f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ _Conditional_ is a super lightweight library that helps you make conditional exp
To add a dependency on _Conditional_ using Gradle, use the following:
```groovy
dependencies {
implementation("com.linecorp.conditional:conditional:1.0.0")
implementation("com.linecorp.conditional:conditional:1.0.1")
}
```

Expand All @@ -24,7 +24,7 @@ To add a dependency using Maven:
<dependency>
<groupId>com.linecorp.conditional</groupId>
<artifactId>conditional</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

Expand Down Expand Up @@ -184,8 +184,8 @@ If you are using the [Kotlin programming language](https://kotlinlang.org), try
To add a dependency on _Conditional-Kotlin_ using Gradle, use the following:
```groovy
dependencies {
implementation("com.linecorp.conditional:conditional:1.0.0")
implementation("com.linecorp.conditional:conditional-kotlin:1.0.0")
implementation("com.linecorp.conditional:conditional:1.0.1")
implementation("com.linecorp.conditional:conditional-kotlin:1.0.1")
}
```

Expand All @@ -195,12 +195,12 @@ To add a dependency using Maven:
<dependency>
<groupId>com.linecorp.conditional</groupId>
<artifactId>conditional</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.linecorp.conditional</groupId>
<artifactId>conditional-kotlin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

allprojects {
group = "com.linecorp.conditional"
version = "1.0.0"
version = "1.0.1"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-framework/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencyManagement {
}

dependencies {
implementation("com.linecorp.conditional:conditional:1.0.0")
implementation("com.linecorp.conditional:conditional:1.0.1")
testImplementation("org.awaitility:awaitility:4.2.0")

implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand Down

0 comments on commit 6eeec1f

Please sign in to comment.