Skip to content

Commit 54d78b9

Browse files
committed
Release v0.5.1
1 parent eba1e58 commit 54d78b9

File tree

17 files changed

+57
-57
lines changed

17 files changed

+57
-57
lines changed

.github/workflows/bencher.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches: [main, cloud, devel]
1010

1111
env:
12-
BENCHER_VERSION: 0.5.0
12+
BENCHER_VERSION: 0.5.1
1313
# General
1414
CARGO_TERM_COLOR: always
1515
MOLD_VERSION: 2.34.1

Cargo.lock

Lines changed: 37 additions & 37 deletions
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
@@ -12,7 +12,7 @@ resolver = "2"
1212

1313
[workspace.package]
1414
homepage = "https://bencher.dev"
15-
version = "0.5.0"
15+
version = "0.5.1"
1616
authors = ["Everett Pompeii <[email protected]>"]
1717
edition = "2021"
1818
license-file = "LICENSE.md"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ Otherwise, it will default to using the latest CLI version.
317317
```yaml
318318
- uses: bencherdev/bencher@main
319319
with:
320-
version: 0.5.0
320+
version: 0.5.1
321321
```
322322

323323
Specify an exact version if using [Bencher _Self-Hosted_](https://bencher.dev/docs/explanation/bencher-self-hosted/).

services/action/dist/index.js

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

services/api/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.0.3",
33
"info": {
44
"title": "Bencher API",
5-
"version": "0.5.0"
5+
"version": "0.5.1"
66
},
77
"paths": {
88
"/": {

services/cli/templates/output/install-cli.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<#
66
.SYNOPSIS
77
8-
Bencher CLI v0.5.0 Installer
8+
Bencher CLI v0.5.1 Installer
99
1010
.DESCRIPTION
1111
@@ -36,9 +36,9 @@ Print help
3636

3737
param (
3838
[Parameter(HelpMessage = "The version of the application to install")]
39-
[string]$AppVersion = $(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.5.0' }),
39+
[string]$AppVersion = $(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.5.1' }),
4040
[Parameter(HelpMessage = "The URL of the directory where artifacts can be fetched from")]
41-
[string]$ArtifactDownloadUrl = "https://bencher.dev/download/$(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.5.0' })",
41+
[string]$ArtifactDownloadUrl = "https://bencher.dev/download/$(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.5.1' })",
4242
[Parameter(HelpMessage = "Don't add the install directory to PATH")]
4343
[switch]$NoModifyPath,
4444
[Parameter(HelpMessage = "Print Help")]

services/cli/templates/output/install-cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616
set -u
1717

1818
APP_NAME=bencher
19-
APP_VERSION="${BENCHER_VERSION:-0.5.0}"
19+
APP_VERSION="${BENCHER_VERSION:-0.5.1}"
2020
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/$APP_VERSION}"
2121
PRINT_VERBOSE=${INSTALLER_PRINT_VERBOSE:-0}
2222
PRINT_QUIET=${INSTALLER_PRINT_QUIET:-0}

0 commit comments

Comments
 (0)