Skip to content

Commit

Permalink
version -> 5.4.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenfalk committed Jun 24, 2017
1 parent e8d8a2c commit b6d2933
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RocksDbNative/RocksDbNative.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Title>RocksDbNative</Title>
<TargetFrameworks>netstandard1.6;net40;net45</TargetFrameworks>
<Version>5.4.6.7</Version>
<Version>5.4.6.9</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Description>Native RocksDb Binaries (Install RocksDbSharp package for managed wraper)</Description>
Expand Down
2 changes: 1 addition & 1 deletion RocksDbSharp/RocksDbSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Title>RocksDbSharp</Title>
<TargetFrameworks>netstandard1.6;net40;net45</TargetFrameworks>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Version>5.4.6.7</Version>
<Version>5.4.6.9</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Description>.Net Bindings for RocksDb. See the Project Site for more information. (Note: Also install RocksDbNative package to have native binaries included with build)</Description>
Expand Down
2 changes: 1 addition & 1 deletion download-native.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@powershell wget https://github.com/warrenfalk/rocksdb-sharp/releases/download/v5.4.6.7/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.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
2 changes: 1 addition & 1 deletion download-native.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
[ -f native.zip ] || curl -L https://github.com/warrenfalk/rocksdb-sharp/releases/download/v5.4.6.7/native-6e05979.zip --output native.zip
[ -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 ] && { mkdir -p RocksDbNative/native; cd RocksDbNative/native && unzip ../../native.zip; }
[ -f native.zip -a -f native/amd64/librocksdb.so ] && rm native.zip
2 changes: 1 addition & 1 deletion native-build/build-rocksdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

ROCKSDBVERSION=6e05979
ROCKSDBVNUM=5.4.6
ROCKSDBSHARPVNUM=5.4.6.7
ROCKSDBSHARPVNUM=5.4.6.9
SNAPPYVERSION=37aafc9e

ROCKSDBREMOTE=https://github.com/warrenfalk/rocksdb
Expand Down

0 comments on commit b6d2933

Please sign in to comment.