From 3dbe33a0a4d16d7504b98e4f1b675c78f3b169ce Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sun, 23 Feb 2014 17:57:17 +0100 Subject: Document changes and release 0.6.10 --- debian/changelog | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 8e96f40e..5b1f95df 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +git-buildpackage (0.6.10) unstable; urgency=medium + + * [f1bc542,1b0b17c] config: Don't pull in config defaults twice. + This would otherwise overwrite values set in the legacy config sections. + (Closes: #733759) + * [7e26f91] Remove cover-min-percentage. It makes running single tests + harder than necessary since it requires the percentage also when using + "nose ". + * [d533e0f] import_dsc: Create missing debian branch with + --create-missing-branches (Closes: #739888) + * [df32264] git-import-dsc: Document --create-missing-branches + + -- Guido Günther Sun, 23 Feb 2014 17:56:47 +0100 + git-buildpackage (0.6.9) unstable; urgency=medium [ Guido Günther ] -- cgit v1.2.3 From 38cfa6cb4c8026b54a29434f786e818977fb51e3 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Mon, 3 Mar 2014 09:37:47 +0100 Subject: Request verbose output on bug reports --- debian/bug-presubj | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 debian/bug-presubj (limited to 'debian') diff --git a/debian/bug-presubj b/debian/bug-presubj new file mode 100644 index 00000000..b000c9d9 --- /dev/null +++ b/debian/bug-presubj @@ -0,0 +1,3 @@ +When reporting issues regarding git-buildpackage please run the failing command +with --git-verbose (gbp buildpackage) or --verbose (all other commands) and +provide the full output. -- cgit v1.2.3 From 8358f1dcc77633c97a096ef6a93998f4099237c4 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 27 Mar 2014 22:28:50 +0100 Subject: Document changes and release 0.6.11 --- debian/changelog | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 5b1f95df..2b6872e6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,40 @@ +git-buildpackage (0.6.11) unstable; urgency=medium + + [ Guido Günther ] + * [38cfa6c] Request verbose output on bug reports + * [d000b0c] Remove incorrect docs about multiple filter options + (Closes: #718536) + * [fd440e2] Use a temporary directory. This avoids file name collisions and + weired files in the working copy. + * [e1780f0] Fix command output. + The first line lacked the subcommand like: + $ gbp pull --help + Usage: gbp [options] - safely update a repository from remote + instead of + $ gbp pull --help + Usage: gbp pull [options] - safely update a repository from remote + ^^^^ + + [ Mario Lang ] + * [077dc35] Fix config file name + + [ Markus Lehtonen ] + * [3808523] docs: add some missing sgml closing tags + * [d8f55da] GitRepository/get_commit_info: correctly handle file + renames/copies. Use the '--no-renames' git command line option in order + to prevent two filenames per entry. + * [5dd598f] GitRepository/add_remote_repo: fix the 'tags' argument. + Explicitly use --tags in git arguments - otherwise tags might not be + fetched. + * [15d87fb] tests: more robust check for the default urgency level of dch. + The dch tool might not report it's version if it is incorrectly compiled. + Create a dummy changelog and parse it "manually" to determine the default + urgency level. + * [7774375] pq: minor log message typo fix + * [bbf21bf] ComponentTestBase: use regex matching in log checking + + -- Guido Günther Thu, 27 Mar 2014 22:27:38 +0100 + git-buildpackage (0.6.10) unstable; urgency=medium * [f1bc542,1b0b17c] config: Don't pull in config defaults twice. -- cgit v1.2.3 From 8f7a64eb08bdf1a8e04db8cf07cf74e88b90e9e4 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sat, 29 Mar 2014 00:18:09 +0100 Subject: Document changes and release 0.6.12 --- debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 2b6872e6..a9a52c20 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +git-buildpackage (0.6.12) unstable; urgency=medium + + * [89f3005] Use a much simpler version to fix the command name in --help + mostly reverting e1780f0. (Closes: #742907) + + -- Guido Günther Sat, 29 Mar 2014 00:17:59 +0100 + git-buildpackage (0.6.11) unstable; urgency=medium [ Guido Günther ] -- cgit v1.2.3 From 7c415f8b75964423ec980e9ff3ada15896206356 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 3 Apr 2014 21:32:22 +0200 Subject: Document changes and release 0.6.13 --- debian/changelog | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index a9a52c20..aef756c3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,26 @@ +git-buildpackage (0.6.13) unstable; urgency=medium + + [ Guido Günther ] + * [14f6ded] Test option parser fallbacks more thoroughly + revealing another bug where we overwrote parsed values with defaults + (Closes: #733759) + * [03ada72] .gitignore: ignore editor backup files + * [4c6b067] Add minimal 'config' command. This only allows to print single + config values so far. (Closes: #733470) + * [b393080] Import command not module. This matches the function name. + * [459d9bf] config: add decorator to add_option_* functions. + This allows us to build an internal list of valid options and print + these. + + [ Markus Lehtonen ] + * [a8cfd88] Revert "GitRepository/add_remote_repo: fix the 'tags' argument" + Which caused an unwanted behavior of not fetching refs/heads at all -- + only tags were fetched. + This reverts commit 5dd598fb8f2a9109189fad6cf631811f12ce2130 + * [4131b90] docs: re-enable missing manpage + + -- Guido Günther Thu, 03 Apr 2014 21:31:38 +0200 + git-buildpackage (0.6.12) unstable; urgency=medium * [89f3005] Use a much simpler version to fix the command name in --help -- cgit v1.2.3