Skip to content

Commit

Permalink
Release conditional-1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
icepeppermint committed Jan 2, 2023
1 parent bd23584 commit 97dbde8
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 @@ -56,7 +56,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.2")
implementation("com.linecorp.conditional:conditional:1.0.3")
}
```

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

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

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

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

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

0 comments on commit 97dbde8

Please sign in to comment.