Skip to content

Commit

Permalink
Release conditional-1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
icepeppermint committed Jan 3, 2023
1 parent d62fd1f commit 32515c7
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 @@ -60,7 +60,7 @@ Let's dive into the _Conditional_.
To add a dependency on _Conditional_ using Gradle, use the following:
```groovy
dependencies {
implementation("com.linecorp.conditional:conditional:1.0.3")
implementation("com.linecorp.conditional:conditional:1.0.4")
}
```

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

Expand Down Expand Up @@ -259,8 +259,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.3")
implementation("com.linecorp.conditional:conditional-kotlin:1.0.3")
implementation("com.linecorp.conditional:conditional:1.0.4")
implementation("com.linecorp.conditional:conditional-kotlin:1.0.4")
}
```

Expand All @@ -270,12 +270,12 @@ To add a dependency using Maven:
<dependency>
<groupId>com.linecorp.conditional</groupId>
<artifactId>conditional</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>com.linecorp.conditional</groupId>
<artifactId>conditional-kotlin</artifactId>
<version>1.0.3</version>
<version>1.0.4</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.3"
version = "1.0.4"

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.3")
implementation("com.linecorp.conditional:conditional:1.0.4")
testImplementation("org.awaitility:awaitility:4.2.0")

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

0 comments on commit 32515c7

Please sign in to comment.