diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1fe7fa85..acffa314 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,11 @@
# [Rqueue] New and Notable Changes
+
+### [2.12.0] - 14-Dec-2022
+### Fixes
+* Upgraded Pebble version for CVE
+* Use System Zone ID for UI display
+
+
### [2.11.1] - 18-Nov-2022
### Fixes
Bug introduced by 2.11
@@ -308,4 +315,8 @@ Fixes:
[2.11]: https://repo1.maven.org/maven2/com/github/sonus21/rqueue-core/2.11-RELEASE
+[2.11.1]: https://repo1.maven.org/maven2/com/github/sonus21/rqueue-core/2.11.1-RELEASE
+
+[2.12.0]: https://repo1.maven.org/maven2/com/github/sonus21/rqueue-core/2.12.0-RELEASE
+
[122]: https://github.com/sonus21/rqueue/issues/122
diff --git a/README.md b/README.md
index 78f38777..8eadfd75 100644
--- a/README.md
+++ b/README.md
@@ -78,7 +78,7 @@ Release Version: [Maven central](https://search.maven.org/search?q=g:com.github.
com.github.sonus21
rqueue-spring-boot-starter
- 2.11.1-RELEASE
+ 2.12.0-RELEASE
```
@@ -91,14 +91,14 @@ Release Version: [Maven central](https://search.maven.org/search?q=g:com.github.
* Add Dependency
* Gradle
```groovy
- implementation 'com.github.sonus21:rqueue-spring:2.11.1-RELEASE'
+ implementation 'com.github.sonus21:rqueue-spring:2.12.0-RELEASE'
```
* Maven
```xml
com.github.sonus21
rqueue-spring
- 2.11.1-RELEASE
+ 2.12.0-RELEASE
```
diff --git a/build.gradle b/build.gradle
index 841a4e9e..70271509 100644
--- a/build.gradle
+++ b/build.gradle
@@ -70,7 +70,7 @@ ext {
subprojects {
group = 'com.github.sonus21'
- version = '2.11.1-RELEASE'
+ version = '2.12.0-RELEASE'
dependencies {
// https://mvnrepository.com/artifact/org.springframework/spring-messaging
diff --git a/publish.sh b/publish.sh
new file mode 100755
index 00000000..c3c80f24
--- /dev/null
+++ b/publish.sh
@@ -0,0 +1,4 @@
+#!/usr/bin/env bash
+./gradlew rqueue-core:publish
+./gradlew rqueue-spring:publish
+./gradlew rqueue-spring-boot-starter:publish
\ No newline at end of file
diff --git a/rqueue-core/src/test/java/com/github/sonus21/rqueue/utils/DateTimeUtilsTest.java b/rqueue-core/src/test/java/com/github/sonus21/rqueue/utils/DateTimeUtilsTest.java
index 011e8bb6..8d53615c 100644
--- a/rqueue-core/src/test/java/com/github/sonus21/rqueue/utils/DateTimeUtilsTest.java
+++ b/rqueue-core/src/test/java/com/github/sonus21/rqueue/utils/DateTimeUtilsTest.java
@@ -75,7 +75,7 @@ void negativeMilliToHumanRepresentation() {
@Test
void formatMilliToString() {
- assertEquals("26 Apr 1970 17:46", DateTimeUtils.formatMilliToString(10000000000L));
+ assertEquals("1970-04-26 17:46", DateTimeUtils.formatMilliToString(10000000000L));
assertEquals("", DateTimeUtils.formatMilliToString(null));
}
}
diff --git a/rqueue-core/src/test/java/com/github/sonus21/rqueue/web/view/DateTimeFunctionTest.java b/rqueue-core/src/test/java/com/github/sonus21/rqueue/web/view/DateTimeFunctionTest.java
index 6969ec7a..21b4f1ab 100644
--- a/rqueue-core/src/test/java/com/github/sonus21/rqueue/web/view/DateTimeFunctionTest.java
+++ b/rqueue-core/src/test/java/com/github/sonus21/rqueue/web/view/DateTimeFunctionTest.java
@@ -37,7 +37,7 @@ void getArguments() {
@Test
void execute() {
assertEquals(
- "01 May 2020 12:21",
+ "2020-05-01 12:21",
function.execute(Collections.singletonMap("milli", 1588335692988L), null, null, -1));
}
}