Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
2dcedec7
Kaydet (Commit)
2dcedec7
authored
Mar 29, 2018
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge branch 'release'
üst
9ff787cb
2ecc3adc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
1 deletion
+65
-1
version.py
docker/version.py
+1
-1
change-log.md
docs/change-log.md
+57
-0
client.rst
docs/client.rst
+1
-0
release.sh
scripts/release.sh
+6
-0
No files found.
docker/version.py
Dosyayı görüntüle @
2dcedec7
version
=
"3.2.0
-dev
"
version
=
"3.2.0"
version_info
=
tuple
([
int
(
d
)
for
d
in
version
.
split
(
"-"
)[
0
]
.
split
(
"."
)])
docs/change-log.md
Dosyayı görüntüle @
2dcedec7
Change log
==========
3.
2.0
-----
[
List of PRs/ issues for this release
](
https://github.com/docker/docker-py/milestone/45?closed=1
)
### Features
*
Generators returned by
`attach()`
,
`logs()`
and
`events()`
now have a
`cancel()`
method to let consumers stop the iteration client-side.
*
`build()`
methods can now handle Dockerfiles supplied outside of the
build context.
*
Added
`sparse`
argument to
`DockerClient.containers.list()`
*
Added
`isolation`
parameter to
`build()`
methods.
*
Added
`close()`
method to
`DockerClient`
*
Added
`APIClient.inspect_distribution()`
method and
`DockerClient.images.get_registry_data()`
*
The latter returns an instance of the new
`RegistryData`
class
3.
1.4
-----
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/48?closed=1
)
### Bugfixes
*
Fixed a bug where build contexts containing directory symlinks would produce
invalid tar archives
3.
1.3
-----
### Bugfixes
*
Regenerated invalid wheel package
3.
1.2
-----
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/47?closed=1
)
### Bugfixes
*
Fixed a bug that led to a Dockerfile not being included in the build context
in some situations when the Dockerfile's path was prefixed with
`./`
3.
1.1
-----
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/46?closed=1
)
### Bugfixes
*
Fixed a bug that caused costly DNS lookups on Mac OSX when connecting to the
engine through UNIX socket
*
Fixed a bug that caused
`.dockerignore`
comments to be read as exclusion
patterns
3.
1.0
-----
...
...
docs/client.rst
Dosyayı görüntüle @
2dcedec7
...
...
@@ -26,6 +26,7 @@ Client reference
.. autoattribute:: swarm
.. autoattribute:: volumes
.. automethod:: close()
.. automethod:: df()
.. automethod:: events()
.. automethod:: info()
...
...
scripts/release.sh
Dosyayı görüntüle @
2dcedec7
...
...
@@ -18,6 +18,9 @@ if [ -z $VERSION ]; then
exit
1
fi
echo
"##> Removing stale build files"
rm
-rf
./build
||
exit
1
echo
"##> Tagging the release as
$VERSION
"
git tag
$VERSION
||
exit
1
if
[[
$2
==
'upload'
]]
;
then
...
...
@@ -30,4 +33,7 @@ pandoc -f markdown -t rst README.md -o README.rst || exit 1
if
[[
$2
==
'upload'
]]
;
then
echo
"##> Uploading sdist to pypi"
python setup.py sdist bdist_wheel upload
else
echo
"##> sdist & wheel"
python setup.py sdist bdist_wheel
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment