summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASE_NOTES10
-rw-r--r--debian/changelog7
-rw-r--r--debian/control2
-rw-r--r--packaging/repa.changes4
-rw-r--r--packaging/repa.spec2
-rwxr-xr-xrepa/main.py2
-rwxr-xr-xsetup.py2
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',
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'],