Skip to content

Commit

Permalink
version 3.4.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shayhatsor committed Mar 30, 2017
1 parent e652a66 commit 6fca1a7
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 30 deletions.
8 changes: 4 additions & 4 deletions src/csharp/NuGet.config
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
<add key="AspNetCore" value="https://dotnet.myget.org/f/aspnetcore-master/api/v3/index.json" />
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-release/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnet-1-1-1-patch/api/v3/index.json" />
</packageSources>
</configuration>
4 changes: 2 additions & 2 deletions src/csharp/build.ps1
Expand Up @@ -33,7 +33,7 @@ cd $PSScriptRoot
$repoFolder = $PSScriptRoot
$env:REPO_FOLDER = $repoFolder

$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.0.zip"
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.2.zip"
if ($env:KOREBUILD_ZIP)
{
$koreBuildZip=$env:KOREBUILD_ZIP
Expand Down Expand Up @@ -64,4 +64,4 @@ if (!(Test-Path $buildFolder)) {
}
}

&"$buildFile" $args
&"$buildFile" $args
2 changes: 1 addition & 1 deletion src/csharp/build.sh
Expand Up @@ -2,7 +2,7 @@
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder

koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.0.zip"
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.2.zip"
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
Expand Down
6 changes: 3 additions & 3 deletions src/csharp/src/ZooKeeperNetEx.Recipes/project.json
@@ -1,12 +1,12 @@
{
"title": "Apache ZooKeeper .NET async Recipes",
"version": "3.4.9.2",
"version": "3.4.9.3",
"description": ".NET async Distributed recipes for ZooKeeper: Queue, Lock and Leader Election.",
"authors": [ "Shay Hazor" ],
"packOptions": {
"owners": [ "Shay Hazor" ],
"summary": ".NET async Recipes for ZooKeeper",
"releaseNotes": "* Fixed a bug that caused an excessive resource consumption on failed connection retries\n* Updated to .NET Core 1.1\n\nThis project is actively maintained at: https://github.com/shayhatsor/zookeeper \nPlease feel free to open an issue or ask a question there.",
"releaseNotes": "* Fixed a bug that caused an excessive resource consumption on connection loss\n* Updated to .NET Core 1.1.2\n\nThis project is actively maintained at: https://github.com/shayhatsor/zookeeper \nPlease feel free to open an issue or ask a question there.",
"tags": [ "ZooKeeper", "Recipes", ".NET", "Lock", "Leader Election", "Queue" ],
"projectUrl": "https://github.com/shayhatsor/zookeeper",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
Expand All @@ -33,6 +33,6 @@
}
},
"dependencies": {
"ZooKeeperNetEx": "3.4.9.2"
"ZooKeeperNetEx": "3.4.9.3"
}
}
4 changes: 2 additions & 2 deletions src/csharp/src/ZooKeeperNetEx/project.json
@@ -1,12 +1,12 @@
{
"title": "Apache ZooKeeper .NET async Client",
"version": "3.4.9.2",
"version": "3.4.9.3",
"description": "A .NET async Client fully compliant with ZooKeeper, supporting all features. Fully Task-based Asynchronous (async/await). A great measure has been taken to follow the logic of the official Java client, including all relevant unit tests. In fact, the code is almost identical. Thus allowing easy evolution alongside the Java version.",
"authors": [ "Shay Hazor" ],
"packOptions": {
"owners": [ "Shay Hazor" ],
"summary": "A .NET async Client for ZooKeeper",
"releaseNotes": "* Fixed a bug that caused an excessive resource consumption on failed connection retries\n* Updated to .NET Core 1.1\n\nThis project is actively maintained at: https://github.com/shayhatsor/zookeeper \nPlease feel free to open an issue or ask a question there.",
"releaseNotes": "* Fixed a bug that caused an excessive resource consumption on connection loss\n* Updated to .NET Core 1.1.2\n\nThis project is actively maintained at: https://github.com/shayhatsor/zookeeper \nPlease feel free to open an issue or ask a question there.",
"tags": [ "ZooKeeper", ".NET", "Client", "Async" ],
"projectUrl": "https://github.com/shayhatsor/zookeeper",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
Expand Down
10 changes: 3 additions & 7 deletions src/csharp/test/ZooKeeperNetEx.Recipes.Tests/project.json
Expand Up @@ -7,20 +7,16 @@
},
"dependencies": {
"ZooKeeperNetEx.Tests": "*",
"ZooKeeperNetEx.Recipes": "3.4.9.2"
"ZooKeeperNetEx.Recipes": "3.4.9.3"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0",
"version": "1.1.1",
"type": "platform"
}
},
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
}
},
"net451": {}
},
Expand Down
18 changes: 7 additions & 11 deletions src/csharp/test/ZooKeeperNetEx.Tests/project.json
Expand Up @@ -6,29 +6,25 @@
"debugType": "portable"
},
"dependencies": {
"ZooKeeperNetEx": "3.4.9.2",
"Newtonsoft.Json": "*",
"xunit": "2.2.0-beta4-build3444",
"ZooKeeperNetEx": "3.4.9.3",
"Newtonsoft.Json": "10.0.1",
"xunit": "2.2.0",
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"Microsoft.DotNet.InternalAbstractions": "1.0.500-preview2-1-003177"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0",
"version": "1.1.1",
"type": "platform"
}
},
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
}
},
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Threading.Tasks": ""
"System.Runtime": "4.0.10.0",
"System.Threading.Tasks": "4.0.0.0"
}
}
},
Expand Down

0 comments on commit 6fca1a7

Please sign in to comment.