Skip to content

Commit

Permalink
Version bump (0.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
delano committed Nov 24, 2017
1 parent 9d6744b commit 059fd1e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 11 deletions.
11 changes: 11 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
REDIS-DUMP, CHANGES

#### 0.4.0 (2017-11-23) ###############################

* ADDED: support for redis >= 4.0
* ADDED: support for base64 encoded string keys
* FIXED: redis passwords with special characters


#### 0.3.6 (2017-11-09) ###############################

* FIXED: redis < 4.0 dependency [Clemens Fuchslocher]

#### 0.3.5 (2013-02-07) ###############################

* Array#select fix for Ruby 1.8 [TIT]
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010 Solutious Inc, Delano Mandelbaum
Copyright (c) 2010-2017 Solutious Inc, Delano Mandelbaum

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.
12 changes: 6 additions & 6 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
= Redis-Dump v0.3 ALPHA
= Redis-Dump v0.4 BETA

<i>Backup and restore your Redis data to and from JSON.</i>

<b>NOTE: This is alpha software. TEST IT BEFORE RELYING ON IT.</b>
<b>NOTE: This is beta software. TEST IT BEFORE RELYING ON IT.</b>


== Usage

There are two executables: <tt>redis-dump</tt> and <tt>redis-load</tt>.
There are two executables: <tt>redis-dump</tt> and <tt>redis-load</tt>.

$ redis-dump
$ redis-dump
$ redis-dump -u 127.0.0.1:6371 > db_full.json
$ redis-dump -u 127.0.0.1:6371 -d 15 > db_db15.json

$ < db_full.json redis-load
$ < db_db15.json redis-load -d 15
# OR
$ cat db_full | redis-load
$ cat db_db15.json | redis-load -d 15

# You can specify the redis URI via an environment variable
$ export REDIS_URI=127.0.0.1:6371
$ redis-dump
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.5
0.4.0
4 changes: 2 additions & 2 deletions try/redis.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# redis-dump redis config
# 2013-02-01
# 2017-11-09

dir /tmp
pidfile redisdump-test.pid
logfile redisdump-test.log
dbfilename redisdump-test.rdb

#requirepass CHANGEME
# requirepass @/

bind 127.0.0.1
port 6371
Expand Down

0 comments on commit 059fd1e

Please sign in to comment.