Skip to content

Commit 7a046d4

Browse files
committed
v.1.1.1 readme update and nuspec
1 parent 044ac99 commit 7a046d4

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

NuGet/Docker.DotNet.1.1.1.nuspec

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>Docker.DotNet</id>
5+
<version>1.1.1</version>
6+
<title>Docker.DotNet</title>
7+
<authors>Ahmet Alp Balkan</authors>
8+
<owners>ahmetalpbalkan</owners>
9+
<licenseUrl>https://github.com/ahmetalpbalkan/Docker.DotNet/blob/master/LICENSE</licenseUrl>
10+
<projectUrl>https://github.com/ahmetalpbalkan/Docker.DotNet/</projectUrl>
11+
<iconUrl>https://camo.githubusercontent.com/fa6d5c12609ed8a3ba1163b96f9e9979b8f59b0d/687474703a2f2f7765732e696f2f566663732f636f6e74656e74</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>This library allows you to use Docker Remote API programmatically in your .NET applications.
14+
15+
It is portable (PCL), fully asynchronous, non-blocking and object-oriented way to interact with your Docker daemon programmatically. As of this release, it supports Docker Remote API v1.14.
16+
17+
★ Documentation: https://github.com/ahmetalpbalkan/Docker.DotNet</description>
18+
<summary>.NET Client Library for Docker Remote API.</summary>
19+
<copyright />
20+
<dependencies>
21+
<dependency id="Newtonsoft.Json" version="6.0.4" />
22+
<dependency id="Microsoft.Net.Http" version="2.2.28" />
23+
</dependencies>
24+
</metadata>
25+
<files>
26+
<file src="..\Docker.DotNet\bin\Release\Docker.DotNet.dll" target="lib\portable-net45+sl5+wp8+win8\Docker.DotNet.dll" />
27+
</files>
28+
</package>

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,16 @@ Backwards compatibility is not tested and therefore not guaranteed.
160160
## Changes
161161

162162
```
163+
164+
v1.1.1
165+
======
166+
+ Bugfix: infinite timeout for stream requests lost in PCL translation
167+
+ New: support to specify a container name in CreateContainerAsync
168+
169+
Acknowledgemnets
170+
- @jgarverick for implementing container name support
171+
- Iouri Simernitski (@pefferie) for bug report
172+
163173
v1.1.0
164174
======
165175
+ PCL support

0 commit comments

Comments
 (0)