From dc19c759460198234a38b2f9358caf6dc3b6e55d Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 24 Nov 2015 19:38:32 +0100 Subject: [PATCH] Update appveyor redis install location And fix double brackets in the changelog --- appveyor.yml | 4 ++-- changelog.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index d2b21d5..1d5c6cd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,8 +18,8 @@ shallow_clone: true install: # Install the Redis - nuget install redis-64 -excludeversion - - redis-64\redis-server.exe --service-install - - redis-64\redis-server.exe --service-start + - redis-64\tools\redis-server.exe --service-install + - redis-64\tools\redis-server.exe --service-start - '@ECHO Redis Started' # Get the latest stable version of Node 0.STABLE.latest - ps: Install-Product node $env:nodejs_version diff --git a/changelog.md b/changelog.md index faeaec4..4acaafa 100644 --- a/changelog.md +++ b/changelog.md @@ -6,7 +6,7 @@ Changelog Features - Added `tls` option to iniate a connection to a redis server behind a TLS proxy. Thanks ([@paddybyers](https://github.com/paddybyers)) -- Added `prefix` option to auto key prefix any command with the provided prefix (([@luin](https://github.com/luin) & [@BridgeAR](https://github.com/BridgeAR))) +- Added `prefix` option to auto key prefix any command with the provided prefix ([@luin](https://github.com/luin) & [@BridgeAR](https://github.com/BridgeAR)) - Added `url` option to pass the connection url with the options object ([@BridgeAR](https://github.com/BridgeAR)) - Added `client.duplicate([options])` to duplicate the current client and return a new one with the same options ([@BridgeAR](https://github.com/BridgeAR)) - Improve performance by up to 20% on almost all use cases ([@BridgeAR](https://github.com/BridgeAR))