diff options
author | SoonKyu Park <sk7.park@samsung.com> | 2017-04-04 21:28:32 +0900 |
---|---|---|
committer | SoonKyu Park <sk7.park@samsung.com> | 2017-04-04 22:18:53 +0900 |
commit | 15a115a5755910c8a07c9c9eb5c4b2ba6d91cd60 (patch) | |
tree | 448e14d45e589f5d5cddca42784dfac76c0f1587 | |
parent | ce6fc3d54bf617e4c408dcb59f5bd6110ddf0aa6 (diff) | |
download | repa-15a115a5755910c8a07c9c9eb5c4b2ba6d91cd60.tar.gz repa-15a115a5755910c8a07c9c9eb5c4b2ba6d91cd60.tar.bz2 repa-15a115a5755910c8a07c9c9eb5c4b2ba6d91cd60.zip |
Upgrade REPA version to 0.5
Change-Id: I95193d9dcc9ab49ebef28872dbaa9e1acb865592
-rw-r--r-- | RELEASE_NOTES | 10 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | packaging/repa.changes | 4 | ||||
-rw-r--r-- | packaging/repa.spec | 2 | ||||
-rwxr-xr-x | repa/main.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
7 files changed, 25 insertions, 4 deletions
diff --git a/RELEASE_NOTES b/RELEASE_NOTES index ea1757d..51d7162 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,3 +1,13 @@ +Release notes for repa 0.5 +============================ + +- Release Date: Wed Apr 5 2017 + +- New features and enhancements: + * Do not accept aggregate packages + * Do not update source of _link packages even if an SR is accepted + + Release notes for repa 0.4 ============================ diff --git a/debian/changelog b/debian/changelog index 164a7c6..7620528 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +repa (0.5) unstable; urgency=low + + * Do not accept aggregate packages + * Do not update source of _link packages even if an SR is accepted + + -- SoonKyu Park <sk7.park@samsung.com> Wed, 5 Apr 2017 19:00:00 +0900 + repa (0.4) unstable; urgency=low * fix pylint error diff --git a/debian/control b/debian/control index 1563322..99b9a41 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Source: repa -Maintainer: Ed Bartosh <eduard.bartosh@intel.com> +Maintainer: Junghyun Kim <jh0822.kim@samsung.com> Section: utils Priority: optional Build-Depends: debhelper (>= 9), diff --git a/packaging/repa.changes b/packaging/repa.changes index c375886..4ac973a 100644 --- a/packaging/repa.changes +++ b/packaging/repa.changes @@ -1,3 +1,7 @@ +* Wed Apr 5 2017 SoonKyu Park <sk7.park@samsung.com> 0.5 +- Do not accept aggregate packages +- Do not update source of _link packages even if an SR is accepted + * Fri Mar 4 2016 Ed Bartosh <ed@ed.fi.intel.com> 0.4 - fix pylint error - group: remove --force option diff --git a/packaging/repa.spec b/packaging/repa.spec index c52c738..35f79e0 100644 --- a/packaging/repa.spec +++ b/packaging/repa.spec @@ -1,5 +1,5 @@ Name: repa -Version: 0.4 +Version: 0.5 Summary: Release Engineering Process Assistant %if 0%{?opensuse_bs} Release: 1.<CI_CNT>.<B_CNT> diff --git a/repa/main.py b/repa/main.py index b27945c..37f62db 100755 --- a/repa/main.py +++ b/repa/main.py @@ -57,7 +57,7 @@ def parse_args(argv): ArgumentParser(prog='repa', description='Release Engineering Process Assistant') parser.add_argument('--version', action='version', - version='%(prog)s version 0.4') + version='%(prog)s version 0.5') parser.add_argument('-s', '--section', default='general', help='config section to use') parser.add_argument('-p', '--project', help='target project', @@ -31,7 +31,7 @@ import os from setuptools import setup setup(name="repa", - version='0.4', + version='0.5', author='Ed Bartosh', author_email='eduard.bartosh@intel.com', packages=['repa'], |