Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
fengzhizi715 committed Jan 16, 2023
1 parent 184c267 commit 6d0f394
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ext {
libraries = [
kotlinx_cli : "0.3.2",

kotlinx_coroutines_core : "1.6.1",
kotlinx_coroutines_core : "1.6.4",

joor_java : "0.9.14",

Expand Down Expand Up @@ -60,7 +60,7 @@ dependencies {
}

buildscript {
ext.kotlin_version = '1.6.21'
ext.kotlin_version = '1.7.21'

repositories {
jcenter()
Expand Down
5 changes: 5 additions & 0 deletions core/src/main/java/com/safframework/rxcache/RxCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,11 @@ public boolean containsKey(String key) {
return cacheRepository.containsKey(key);
}

/**
* 校验 RxCache 是否可以获取这个 key
* @param key
* @return
*/
public boolean checkKey(String key) {
return cacheRepository.checkKey(key);
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip

0 comments on commit 6d0f394

Please sign in to comment.