Skip to content

Commit

Permalink
Bump version to 1.1.0 (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
tegioz authored Aug 25, 2023
1 parent db173bb commit 7a29590
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitvote"
description = "GitVote server"
version = "1.0.0"
version = "1.1.0"
license = "Apache-2.0"
edition = "2021"

Expand Down
23 changes: 11 additions & 12 deletions charts/gitvote/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: gitvote
description: GitVote is a GitHub application that allows holding a vote on issues and pull requests
type: application
version: 1.0.0
appVersion: 1.0.0
version: 1.1.0
appVersion: 1.1.0
kubeVersion: ">= 1.19.0-0"
home: https://gitvote.dev
icon: https://raw.githubusercontent.com/cncf/gitvote/main/docs/logo/logo.png
Expand All @@ -25,21 +25,20 @@ annotations:
artifacthub.io/category: skip-prediction
artifacthub.io/changes: |
- kind: added
description: New command to check the status of a vote
links:
- name: Documentation
url: https://github.com/cncf/gitvote#checking-votes
description: Support for automatic periodic status checks
- kind: added
description: JSON log format
description: Auto-close vote on passing feature
- kind: added
description: Mention pending voters when checking vote status
- kind: added
description: Allow excluding team maintainers from allowed voters
- kind: changed
description: Only repository collaborators can now cancel votes
description: Improve comments templates
- kind: changed
description: Improve logging plus some refactoring
description: Bump Alpine to 3.18.3
- kind: changed
description: Upgrade dependencies
- kind: fixed
description: Issue with dbmigrator in Helm chart
artifacthub.io/containsSecurityUpdates: "false"
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: dbmigrator
image: public.ecr.aws/g6m3a0y9/gitvote-dbmigrator
Expand Down
2 changes: 1 addition & 1 deletion src/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CMD_CHECK_VOTE: &str = "check-vote";

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

Expand Down

0 comments on commit 7a29590

Please sign in to comment.