diff --git a/bin/pungi b/bin/pungi index 46718cd1..120352c1 100755 --- a/bin/pungi +++ b/bin/pungi @@ -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) diff --git a/doc/conf.py b/doc/conf.py index b6874922..3f95fe2f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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. diff --git a/pungi.spec b/pungi.spec index 5d5d7588..eb901bfc 100644 --- a/pungi.spec +++ b/pungi.spec @@ -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 - 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 - 4.1.0-1 - repoint master at 4.1.x and new feature development diff --git a/setup.py b/setup.py index cf93adc6..8b94e8d6 100755 --- a/setup.py +++ b/setup.py @@ -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",