-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from fedora-modularity/complete-automation
0.2.0 release
- Loading branch information
Showing
8 changed files
with
73 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.2.0-1 ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 0.2.0 | ||
|
||
Please note, that our API is still not marked stable yet. | ||
|
||
## Breaking changes | ||
|
||
* We have changed how `logs()` method works. It now returns iterator always. On | ||
top of it, we have implemented more convenience methods to return logs as | ||
bytes and unicode. | ||
|
||
* Backend class can (and should) be used as a context manager. This was done | ||
for the sake of creating a temporary directory meant for the backend | ||
instance. The context manager ensures the temporary directory will be removed. | ||
|
||
## New Features | ||
|
||
* We added support for docker-py version 1 so it can work in CentOS. | ||
* conu will check whether required binaries are present and if not, | ||
`CommandDoesNotExistException` will be raised. | ||
* Our documentation was improved and contains now more examples and the python | ||
interface should be explained in more detail. | ||
* When creating docker containers, conu now utilizes option `--cidfile`. | ||
* `execute()` method can be blocking and non-blocking. | ||
* Backend provides a new methos `cleanup_containers()` to cleanup containers | ||
created during the session. | ||
|
||
|
||
# 0.1.0 | ||
|
||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# https://www.python.org/dev/peps/pep-0440/ | ||
__version__ = "0.1.0" | ||
__version__ = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
How to release conu | ||
=================== | ||
|
||
This document covers the release process of conu. | ||
|
||
* Create a new pull request. **DO NOT** name the branch with the version, it would confuse git. Better name is `0.2.0-release`. | ||
|
||
* Prepare new entry for CHANGELOG.md (run :code:`make release`, `tito` will help). | ||
|
||
* Update version in | ||
|
||
* Makefile (`VERSION`) | ||
* conu/version.py | ||
* conu.spec | ||
|
||
* Merge the pull request. | ||
|
||
* Create new release on github, copy the changelog in there. | ||
|
||
* Automation should kick in (and release conu on PyPI). | ||
|
||
* Build conu in COPR. | ||
|