Skip to content

Commit

Permalink
Bump up v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wf9a5m75 committed Nov 8, 2018
1 parent a83e8a9 commit 02d293c
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOGS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Redis on Android release notes
====================================

## Redis on Android 1.1.2
- Released Nov/8/2018 PST
- Bug fix: default value of "dir" setting are incorrect

## Redis on Android 1.1.1
- Released Nov/8/2018 PST
- Upgrade Redis v5.0.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ OK

| Redis version | redis-android version |
|---------------|-----------------------|
| Redis 5.0.1 | v1.1.1 |
| Redis 5.0.1 | v1.1.1 - v1.1.2 |
| Redis 5.0.0 | v1.1.0 |
| Redis 4.0.11 | v1.0.8 |
| Redis 4.0.10 | v1.0.7 |
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.1"
pom.version = "1.1.2"
pom.groupId = "io.wf9a5m75"
pom.artifactId = "redis-android"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static void start(Context context, Bundle options) {
configs.putString("rdbcompression", "yes");
configs.putString("rdbchecksum", "yes");
configs.putString("dbfilename", port + ".rdb");
configs.putString("dir", "./");
// configs.putString("dir", "./"); <-- Don't set here. The value is specified later in this file.


//-------------------
Expand Down Expand Up @@ -117,7 +117,7 @@ public static void start(Context context, Bundle options) {
//-------------------
// Append only mode
//-------------------
configs.putString("appendonly", "no");
configs.putString("appendonly", "yes"); // <--- Should be "yes" by default
configs.putString("appendfilename", port + ".aof");
configs.putString("appendfsync", "everysec");
configs.putString("no-appendfsync-on-rewrite", "no");
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b033b1eeff8e3d8336ccbf915c19c514
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
72f168c0edcb0b7322d5d632e39cddc681cd3313
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.wf9a5m75</groupId>
<artifactId>redis-android</artifactId>
<version>1.1.2</version>
<packaging>aar</packaging>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
87e49c019e9d03fac0380775d2a53270
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bbb4ffad5cadd26f09135b13cc7d7d17404191c4
5 changes: 3 additions & 2 deletions repository/io/wf9a5m75/redis-android/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>io.wf9a5m75</groupId>
<artifactId>redis-android</artifactId>
<versioning>
<release>1.1.1</release>
<release>1.1.2</release>
<versions>
<version>1.0.0</version>
<version>1.0.1</version>
Expand All @@ -16,7 +16,8 @@
<version>1.0.8</version>
<version>1.1.0</version>
<version>1.1.1</version>
<version>1.1.2</version>
</versions>
<lastUpdated>20181108203248</lastUpdated>
<lastUpdated>20181108234448</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b9dfdae0125df430c08c3f17c4c4b2a5
71f7926346ff10dc1ded051cab8644b7
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f646bf471ccf081d41f3e426deb904136cdba5de
ebd819738b09e561fdcfea0638f11c92e49a1ff5

0 comments on commit 02d293c

Please sign in to comment.