Skip to content

Commit

Permalink
Release conditional-1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
icepeppermint committed Jan 4, 2023
1 parent 750c341 commit 793b306
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 @@ -65,7 +65,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.4")
implementation("com.linecorp.conditional:conditional:1.0.5")
}
```

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

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

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

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

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

0 comments on commit 793b306

Please sign in to comment.