Skip to content

Commit 3c01e0c

Browse files
committed
2.2.0 release
1 parent 178641e commit 3c01e0c

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
**NOTE**: The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [2.2.0] - 6-Dec-2020
6+
### Added
7+
* New API to enqueue periodic message. Periodic jobs are like cron jobs that would run at the certain interval.
8+
59
## [2.1.1] - 24-Sep-2020
610
### Added
711
* More apis to enqueue unique message
@@ -109,3 +113,4 @@ Fixes:
109113
[2.0.4]: https://repo1.maven.org/maven2/com/github/sonus21/rqueue-core/2.0.4-RELEASE
110114
[2.1.0]: https://repo1.maven.org/maven2/com/github/sonus21/rqueue-core/2.1.0-RELEASE
111115
[2.1.1]: https://repo1.maven.org/maven2/com/github/sonus21/rqueue-core/2.1.1-RELEASE
116+
[2.2.0]: https://repo1.maven.org/maven2/com/github/sonus21/rqueue-core/2.2.0-RELEASE

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
* Add dependency
4141
* Gradle
4242
```groovy
43-
implementation 'com.github.sonus21:rqueue-spring-boot-starter:2.1.0-RELEASE'
43+
implementation 'com.github.sonus21:rqueue-spring-boot-starter:2.2.0-RELEASE'
4444
```
4545
* Maven
4646
```xml
4747
<dependency>
4848
<groupId>com.github.sonus21</groupId>
4949
<artifactId>rqueue-spring-boot-starter</artifactId>
50-
<version>2.1.0-RELEASE</version>
50+
<version>2.2.0-RELEASE</version>
5151
</dependency>
5252
```
5353
@@ -56,14 +56,14 @@
5656
* Add Dependency
5757
* Gradle
5858
```groovy
59-
implementation 'com.github.sonus21:rqueue-spring:2.1.0-RELEASE'
59+
implementation 'com.github.sonus21:rqueue-spring:2.2.0-RELEASE'
6060
```
6161
* Maven
6262
```xml
6363
<dependency>
6464
<groupId>com.github.sonus21</groupId>
6565
<artifactId>rqueue-spring</artifactId>
66-
<version>2.1.0-RELEASE</version>
66+
<version>2.2.0-RELEASE</version>
6767
</dependency>
6868
```
6969

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ext {
6969

7070
subprojects {
7171
group = 'com.github.sonus21'
72-
version = '2.1.1-RELEASE'
72+
version = '2.2.0-RELEASE'
7373

7474
dependencies {
7575
// https://mvnrepository.com/artifact/org.springframework/spring-messaging

0 commit comments

Comments
 (0)