Skip to content

Commit

Permalink
version 1.13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviarla authored and jhpark816 committed Apr 1, 2024
1 parent 35e1911 commit ba3dddb
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# 2024-04-01 [version 1.13.5]
## 🐣 New Features
* Add @Nullable annotation for support JSR-305
## 🔧 Enhancements
* Generate prefix key only once in createArcusKey method
* Add generateKey() method with only non-nullable parameters
* Add package-private ArcusCache constructor for clean code
* Remove compile warnings and IDE warnings
## 🐛 Bug Fixes
* Fix deprecated spring assert
## 📝 Documentation
* Update Arcus front cache documentation
* Add user guide
## ✅ Testing
* Add CI config
* Remove deprecated test

2023-10-25 [version 1.13.4]
* [FEATURE] upgrade arcus-java-client version (1.13.2 => 1.13.4)
* [FEATURE] add cache hit log
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The artifact for arcus-spring is in the central Maven repository. To use it, add
<dependency>
<groupId>com.jam2in.arcus</groupId>
<artifactId>arcus-spring</artifactId>
<version>1.13.4</version>
<version>1.13.5</version>
</dependency>
</dependencies>
```
Expand All @@ -34,13 +34,13 @@ The artifact for arcus-spring is in the central Maven repository. To use it, add
##### version 7.0 before
```groovy
dependencies {
compile 'com.jam2in.arcus:arcus-spring:1.13.4'
compile 'com.jam2in.arcus:arcus-spring:1.13.5'
}
```
##### version 7.0 or later
```groovy
dependencies {
implementation 'com.jam2in.arcus:arcus-spring:1.13.4'
implementation 'com.jam2in.arcus:arcus-spring:1.13.5'
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/03-arcus-spring-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>com.jam2in.arcus</groupId>
<artifactId>arcus-spring</artifactId>
<version>1.13.4</version>
<version>1.13.5</version>
</dependency>
</dependencies>
```
Expand All @@ -20,13 +20,13 @@
#### version 7.0 before
```groovy
dependencies {
compile 'com.jam2in.arcus:arcus-spring:1.13.4'
compile 'com.jam2in.arcus:arcus-spring:1.13.5'
}
```
#### version 7.0 or later
```groovy
dependencies {
implementation 'com.jam2in.arcus:arcus-spring:1.13.4'
implementation 'com.jam2in.arcus:arcus-spring:1.13.5'
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<name>arcus-spring</name>
<packaging>jar</packaging>
<url>https://github.com/naver/arcus-spring</url>
<version>1.13.4</version>
<version>1.13.5</version>

<properties>
<org.springframework.version>4.3.0.RELEASE</org.springframework.version>
Expand Down

0 comments on commit ba3dddb

Please sign in to comment.