Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed Dec 12, 2022
1 parent 8926bac commit d1aabc3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ repositories {
}
dependencies {
implementation "com.github.lhotari:reactive-pulsar-adapter:0.2.0"
implementation "com.github.lhotari:reactive-pulsar-adapter:0.2.1"
}
```

Expand All @@ -41,7 +41,7 @@ With Maven:
<dependency>
<groupId>com.github.lhotari</groupId>
<artifactId>reactive-pulsar-adapter</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
</dependencies>
```
Expand All @@ -59,8 +59,8 @@ repositories {
}
dependencies {
implementation "com.github.lhotari:reactive-pulsar-spring-boot-starter:0.2.0"
testImplementation "com.github.lhotari:reactive-pulsar-spring-test-support:0.2.0"
implementation "com.github.lhotari:reactive-pulsar-spring-boot-starter:0.2.1"
testImplementation "com.github.lhotari:reactive-pulsar-spring-test-support:0.2.1"
}
```

Expand All @@ -70,12 +70,12 @@ Getting it with Maven:
<dependency>
<groupId>com.github.lhotari</groupId>
<artifactId>reactive-pulsar-spring-boot-starter</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
<dependency>
<groupId>com.github.lhotari</groupId>
<artifactId>reactive-pulsar-spring-test-support</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -121,8 +121,8 @@ is necessary to set the cache on the ReactiveMessageSenderFactory.
With Gradle:
```groovy
dependencies {
implementation "com.github.lhotari:reactive-pulsar-adapter:0.2.0"
implementation "com.github.lhotari:reactive-pulsar-caffeine-producer-cache:0.2.0"
implementation "com.github.lhotari:reactive-pulsar-adapter:0.2.1"
implementation "com.github.lhotari:reactive-pulsar-caffeine-producer-cache:0.2.1"
}
```

Expand All @@ -132,12 +132,12 @@ With Maven:
<dependency>
<groupId>com.github.lhotari</groupId>
<artifactId>reactive-pulsar-adapter</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
<dependency>
<groupId>com.github.lhotari</groupId>
<artifactId>reactive-pulsar-caffeine-producer-cache</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}
allprojects {
group = 'com.github.lhotari'
version = '0.2.0'
version = '0.2.1'
}

0 comments on commit d1aabc3

Please sign in to comment.