4.1.1 release

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2016-04-01 09:42:24 -05:00
parent 6b07dcead3
commit f69ca2c5fa
4 changed files with 33 additions and 3 deletions

View File

@ -200,7 +200,7 @@ if __name__ == '__main__':
today = time.strftime('%Y%m%d', time.localtime())
def get_arguments(config):
parser = OptionParser("%prog [--help] [options]", version="%prog 4.1.0")
parser = OptionParser("%prog [--help] [options]", version="%prog 4.1.1")
def set_config(option, opt_str, value, parser, config):
config.set('pungi', option.dest, value)

View File

@ -53,7 +53,7 @@ copyright = u'2016, Red Hat, Inc.'
# The short X.Y version.
version = '4.1'
# The full version, including alpha/beta/rc tags.
release = '4.1'
release = '4.1.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -65,6 +65,36 @@ nosetests --exe --with-cov --cov-report html --cov-config tox.ini
#cd tests && ./test_compose.sh
%changelog
* Fri Apr 01 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.1-1
- install scripts (dennis)
- Merge #242 `Fix wrong file permissions` (ausil)
- Add a utility to validate config (lsedlar)
- [variants] Stop printing stuff to stderr unconditionally (lsedlar)
- Fix atomic/ostree config validations (lsedlar)
- [pungi-wrapper] Remove duplicated code (lsedlar)
- [checks] Add a check for too restrictive umask (lsedlar)
- [util] Remove umask manipulation from makedirs (lsedlar)
- Merge #240 `Filter variants and architectures` (ausil)
- Filter variants and architectures (lsedlar)
- Refactor checking for failable deliverables (lsedlar)
- [buildinstall] Do not crash on failure (lsedlar)
- Reuse helper in all tests (lsedlar)
- [atomic] Add atomic_installer phase (lsedlar)
- [ostree] Add ostree phase (lsedlar)
- [atomic] Add a script to create ostree repo (lsedlar)
- Merge #232 `Improve logging by adding subvariants` (ausil)
- Add compose type to release for images (lsedlar)
- [image-build] Add traceback on failure (lsedlar)
- [image-build] Use subvariants in logging output (lsedlar)
- [live-media] Use subvariants in logging (lsedlar)
- Add tracebacks to all failable phases (lsedlar)
- ppc no longer needs magic bits in the iso (pbrobinson)
- [buildinstall] Add more debugging output (lsedlar)
- [metadata] Stop crashing on empty path from .treeinfo (lsedlar)
- [checksums] Add label to file name (lsedlar)
- [buildinstall] Use customized dvd disc type (lsedlar)
- image_build: fix subvariant handling (awilliam)
* Tue Feb 23 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.0-1
- repoint master at 4.1.x and new feature development

View File

@ -25,7 +25,7 @@ packages = sorted(packages)
setup(
name = "pungi",
version = "4.1.0", # make sure it matches with pungi.__version__
version = "4.1.1", # make sure it matches with pungi.__version__
description = "Distribution compose tool",
url = "https://pagure.io/pungi",
author = "Dennis Gilmore",