Skip to content

Commit 7a29590

Browse files
authored
Bump version to 1.1.0 (#379)
1 parent db173bb commit 7a29590

4 files changed

Lines changed: 14 additions & 15 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitvote"
33
description = "GitVote server"
4-
version = "1.0.0"
4+
version = "1.1.0"
55
license = "Apache-2.0"
66
edition = "2021"
77

charts/gitvote/Chart.yaml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: gitvote
33
description: GitVote is a GitHub application that allows holding a vote on issues and pull requests
44
type: application
5-
version: 1.0.0
6-
appVersion: 1.0.0
5+
version: 1.1.0
6+
appVersion: 1.1.0
77
kubeVersion: ">= 1.19.0-0"
88
home: https://gitvote.dev
99
icon: https://raw.githubusercontent.com/cncf/gitvote/main/docs/logo/logo.png
@@ -25,21 +25,20 @@ annotations:
2525
artifacthub.io/category: skip-prediction
2626
artifacthub.io/changes: |
2727
- kind: added
28-
description: New command to check the status of a vote
29-
links:
30-
- name: Documentation
31-
url: https://github.com/cncf/gitvote#checking-votes
28+
description: Support for automatic periodic status checks
3229
- kind: added
33-
description: JSON log format
30+
description: Auto-close vote on passing feature
31+
- kind: added
32+
description: Mention pending voters when checking vote status
33+
- kind: added
34+
description: Allow excluding team maintainers from allowed voters
3435
- kind: changed
35-
description: Only repository collaborators can now cancel votes
36+
description: Improve comments templates
3637
- kind: changed
37-
description: Improve logging plus some refactoring
38+
description: Bump Alpine to 3.18.3
3839
- kind: changed
3940
description: Upgrade dependencies
40-
- kind: fixed
41-
description: Issue with dbmigrator in Helm chart
42-
artifacthub.io/containsSecurityUpdates: "false"
41+
artifacthub.io/containsSecurityUpdates: "true"
4342
artifacthub.io/images: |
4443
- name: dbmigrator
4544
image: public.ecr.aws/g6m3a0y9/gitvote-dbmigrator

src/cmd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const CMD_CHECK_VOTE: &str = "check-vote";
1515

1616
lazy_static! {
1717
/// Regex used to detect commands in issues/prs comments.
18-
static ref CMD: Regex = Regex::new(r#"(?m)^/(vote|cancel-vote|check-vote)-?([a-zA-Z0-9]*)\s*$"#)
18+
static ref CMD: Regex = Regex::new(r"(?m)^/(vote|cancel-vote|check-vote)-?([a-zA-Z0-9]*)\s*$")
1919
.expect("invalid CMD regexp");
2020
}
2121

0 commit comments

Comments
 (0)