From 597f3216c0f4fe6342b7bf68462c8df0b9dffc82 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Tue, 30 Jan 2024 17:19:10 -0500 Subject: [PATCH] Bump version number for git-publish 1.8.2 release Changes since 1.8.1: - Add --send-email-args argument to pass git-send-email(1) arguments - Show a clear error message when the base branch does not exist Signed-off-by: Stefan Hajnoczi --- git-publish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-publish b/git-publish index 17bf2b8..4c49c90 100755 --- a/git-publish +++ b/git-publish @@ -23,7 +23,7 @@ import shutil import subprocess import locale -VERSION = '1.8.1' +VERSION = '1.8.2' tag_version_re = re.compile(r'^[a-zA-Z0-9_/\-\.]+-v(\d+)$') git_email_policy = email.policy.default.clone(max_line_length=0, linesep='\n')