From ee05f2459efc126f532589ddf221ce6ac3df4c66 Mon Sep 17 00:00:00 2001 From: Warren Falk Date: Sat, 18 Nov 2017 11:38:06 -0500 Subject: [PATCH] RocksDbSharp version to 5.4.6.10 --- RocksDbNative/RocksDbNative.csproj | 2 +- RocksDbSharp/RocksDbSharp.csproj | 2 +- download-native.cmd | 2 +- download-native.sh | 2 +- native-build/build-rocksdb.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/RocksDbNative/RocksDbNative.csproj b/RocksDbNative/RocksDbNative.csproj index c37997c..cdf5593 100644 --- a/RocksDbNative/RocksDbNative.csproj +++ b/RocksDbNative/RocksDbNative.csproj @@ -3,7 +3,7 @@ RocksDbNative netstandard1.6;net40;net45 - 5.4.6.9 + 5.4.6.10 $(Version) $(Version) Native RocksDb Binaries (Install RocksDbSharp package for managed wraper) diff --git a/RocksDbSharp/RocksDbSharp.csproj b/RocksDbSharp/RocksDbSharp.csproj index a5fbfa7..7025671 100644 --- a/RocksDbSharp/RocksDbSharp.csproj +++ b/RocksDbSharp/RocksDbSharp.csproj @@ -4,7 +4,7 @@ RocksDbSharp netstandard1.6;net40;net45 True - 5.4.6.9 + 5.4.6.10 $(Version) $(Version) .Net Bindings for RocksDb. See the Project Site for more information. (Note: Also install RocksDbNative package to have native binaries included with build) diff --git a/download-native.cmd b/download-native.cmd index 7cd5661..0bb6621 100644 --- a/download-native.cmd +++ b/download-native.cmd @@ -1 +1 @@ -@powershell wget https://github.com/warrenfalk/rocksdb-sharp/releases/download/v5.4.6.9/native-6e05979.zip -OutFile native.zip ; Add-Type -AssemblyName System.IO.Compression.FileSystem ; If (Test-Path RocksDbNative\native) { remove-item -Recurse RocksDbNative\native } ; [System.IO.Compression.ZipFile]::ExtractToDirectory(\"native.zip\", \".\RocksDbNative\native\") ; remove-item native.zip +@powershell wget https://github.com/warrenfalk/rocksdb-sharp/releases/download/v5.4.6.10/native-6e05979.zip -OutFile native.zip ; Add-Type -AssemblyName System.IO.Compression.FileSystem ; If (Test-Path RocksDbNative\native) { remove-item -Recurse RocksDbNative\native } ; [System.IO.Compression.ZipFile]::ExtractToDirectory(\"native.zip\", \".\RocksDbNative\native\") ; remove-item native.zip diff --git a/download-native.sh b/download-native.sh index 8008074..3bf79e4 100755 --- a/download-native.sh +++ b/download-native.sh @@ -1,4 +1,4 @@ #!/bin/bash -[ -f native.zip ] || curl -L https://github.com/warrenfalk/rocksdb-sharp/releases/download/v5.4.6.9/native-6e05979.zip --output native.zip +[ -f native.zip ] || curl -L https://github.com/warrenfalk/rocksdb-sharp/releases/download/v5.4.6.10/native-6e05979.zip --output native.zip [ -f native.zip ] && { mkdir -p RocksDbNative/native; cd RocksDbNative/native && unzip ../../native.zip; } [ -f native.zip -a -f native/amd64/librocksdb.so ] && rm native.zip diff --git a/native-build/build-rocksdb.sh b/native-build/build-rocksdb.sh index b2da07f..5575812 100755 --- a/native-build/build-rocksdb.sh +++ b/native-build/build-rocksdb.sh @@ -28,7 +28,7 @@ ROCKSDBVERSION=6e05979 ROCKSDBVNUM=5.4.6 -ROCKSDBSHARPVNUM=5.4.6.9 +ROCKSDBSHARPVNUM=5.4.6.10 SNAPPYVERSION=37aafc9e ROCKSDBREMOTE=https://github.com/warrenfalk/rocksdb