From: SoonKyu Park Date: Tue, 4 Apr 2017 12:28:32 +0000 (+0900) Subject: Upgrade REPA version to 0.5 X-Git-Tag: submit/trunk/20190927.012842~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15a115a5755910c8a07c9c9eb5c4b2ba6d91cd60;p=tools%2Frepa.git Upgrade REPA version to 0.5 Change-Id: I95193d9dcc9ab49ebef28872dbaa9e1acb865592 --- 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 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 +Maintainer: Junghyun Kim 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 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 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.. 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', diff --git a/setup.py b/setup.py index 1a2e747..53515aa 100755 --- a/setup.py +++ b/setup.py @@ -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'],