Skip to content

Commit

Permalink
Bump up v1.1.4 (Redis 5.0.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
wf9a5m75 committed Dec 19, 2018
1 parent 57aa30b commit 8f662e2
Show file tree
Hide file tree
Showing 646 changed files with 1,119 additions and 11,977 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Redis version

Nov/26/2018 **Redis 5.0.2**
Dec/18/2018 **Redis 5.0.3**

## Description

Expand Down Expand Up @@ -55,7 +55,7 @@ repositories {
}
dependencies {
compile 'io.wf9a5m75:redis-android:1.1.3'
compile 'io.wf9a5m75:redis-android:1.1.4'
}
```

Expand Down Expand Up @@ -173,6 +173,7 @@ OK

| Redis version | redis-android version |
|---------------|-----------------------|
| Redis 5.0.3 | v1.1.4 |
| Redis 5.0.2 | v1.1.3 |
| Redis 5.0.1 | v1.1.1 - v1.1.2 |
| Redis 5.0.0 | v1.1.0 |
Expand Down
2 changes: 1 addition & 1 deletion redis-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ uploadArchives {
repositories {
mavenDeployer {
repository url: "file://${repo.absolutePath}"
pom.version = "1.1.3"
pom.version = "1.1.4"
pom.groupId = "io.wf9a5m75"
pom.artifactId = "redis-android"
}
Expand Down
8 changes: 8 additions & 0 deletions redis-android/make_zip.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

CWD=$(pwd)
pushd src/main/obj/local/
for dir in "arm64-v8a" "armeabi-v7a" "x86" "x86_64"; do
find ${dir} -name "redis-*" -type f -d 1 -print | zip "${CWD}/release_zip/${dir}.zip" -@
done
popd
Loading

0 comments on commit 8f662e2

Please sign in to comment.