diff mbox

docs: Correct pre-release regex

Message ID 20170526082910.15205-1-stephen@that.guru
State Accepted
Headers show

Commit Message

Stephen Finucane May 26, 2017, 8:29 a.m. UTC
There's no dot before the rc version.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Fixes: b02c43d ("docs: Add pre-release regex")
---
 releasenotes/config.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stephen Finucane May 26, 2017, 8:35 a.m. UTC | #1
On Fri, 2017-05-26 at 09:29 +0100, Stephen Finucane wrote:
> There's no dot before the rc version.
> 
> Signed-off-by: Stephen Finucane <stephen@that.guru>
> Fixes: b02c43d ("docs: Add pre-release regex")

I'm going to go right ahead and merge this as a noddy fix that I've
validated locally.

Stephen
diff mbox

Patch

diff --git a/releasenotes/config.yaml b/releasenotes/config.yaml
index ff1d7e2..1fb8a5b 100644
--- a/releasenotes/config.yaml
+++ b/releasenotes/config.yaml
@@ -1,4 +1,4 @@ 
 ---
 earliest_version: v1.1.0
 release_tag_re: 'v\d\.\d\.\d(rc\d+)?'
-pre_release_tag_re: '(?P<pre_release>-rc(?:\.\d)*)$'
+pre_release_tag_re: '(?P<pre_release>-rc(?:\d)*)$'