Browse Source

Update appveyor redis install location

And fix double brackets in the changelog
internal
Ruben Bridgewater 9 years ago
parent
commit
dc19c75946
  1. 4
      appveyor.yml
  2. 2
      changelog.md

4
appveyor.yml

@ -18,8 +18,8 @@ shallow_clone: true
install: install:
# Install the Redis # Install the Redis
- nuget install redis-64 -excludeversion - nuget install redis-64 -excludeversion
- redis-64\redis-server.exe --service-install - redis-64\tools\redis-server.exe --service-install
- redis-64\redis-server.exe --service-start - redis-64\tools\redis-server.exe --service-start
- '@ECHO Redis Started' - '@ECHO Redis Started'
# Get the latest stable version of Node 0.STABLE.latest # Get the latest stable version of Node 0.STABLE.latest
- ps: Install-Product node $env:nodejs_version - ps: Install-Product node $env:nodejs_version

2
changelog.md

@ -6,7 +6,7 @@ Changelog
Features Features
- Added `tls` option to iniate a connection to a redis server behind a TLS proxy. Thanks ([@paddybyers](https://github.com/paddybyers)) - 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 `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)) - 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)) - Improve performance by up to 20% on almost all use cases ([@BridgeAR](https://github.com/BridgeAR))

Loading…
Cancel
Save