Skip to content

Commit

Permalink
Merge pull request kstyrc#28 from kstyrc/changelog_update_before_release
Browse files Browse the repository at this point in the history
Updated changelog & fixed one typo
  • Loading branch information
kstyrc committed Feb 21, 2015
2 parents a9ad286 + 6beb128 commit 6b39cef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,17 @@ Contributors
Changelog
==============

### 0.4 (upcoming)
### 0.5
* OS detection fix (not ready)
* redis binary per OS/arch pair (not ready)

### 0.4
* Updated for Java 8
* Added Sentinel support
* Ability to create arbitrary clusters on arbitrary (ephemeral) ports
* Updated to latest guava
* Throw an exception if redis has not been started
* OS detection fix (not ready)
* redis binary per OS/arch pair (not ready)
* Redis errorStream logged to System.out

### 0.3
* Fluent API for RedisServer creation
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/redis/embedded/AbstractRedisInstance.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public synchronized void start() throws EmbeddedRedisException {
awaitRedisServerReady();
active = true;
} catch (IOException e) {
throw new EmbeddedRedisException("Failed to start Reddis instance", e);
throw new EmbeddedRedisException("Failed to start Redis instance", e);
}
}

Expand Down

0 comments on commit 6b39cef

Please sign in to comment.