Skip to content

Commit 25514f9

Browse files
committed
Release v0.4.22
1 parent 0724976 commit 25514f9

File tree

9 files changed

+45
-45
lines changed

9 files changed

+45
-45
lines changed

Cargo.lock

+26-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude = ["services/benchers"]
1111
resolver = "2"
1212

1313
[workspace.package]
14-
version = "0.4.21"
14+
version = "0.4.22"
1515
authors = ["Everett Pompeii <[email protected]>"]
1616
edition = "2021"
1717

services/action/dist/index.js

+1-1
Large diffs are not rendered by default.

services/api/openapi.json

+1-1
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.4.21"
5+
"version": "0.4.22"
66
},
77
"paths": {
88
"/": {

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<#
66
.SYNOPSIS
77
8-
Bencher CLI v0.4.21 Installer
8+
Bencher CLI v0.4.22 Installer
99
1010
.DESCRIPTION
1111
@@ -33,15 +33,15 @@ Print help
3333

3434
param (
3535
[Parameter(HelpMessage = "The URL of the directory where artifacts can be fetched from")]
36-
[string]$ArtifactDownloadUrl = 'https://bencher.dev/download/0.4.21',
36+
[string]$ArtifactDownloadUrl = 'https://bencher.dev/download/0.4.22',
3737
[Parameter(HelpMessage = "Don't add the install directory to PATH")]
3838
[switch]$NoModifyPath,
3939
[Parameter(HelpMessage = "Print Help")]
4040
[switch]$Help
4141
)
4242

4343
$app_name = 'bencher'
44-
$app_version = '0.4.21'
44+
$app_version = '0.4.22'
4545

4646
function Install-Binary($install_args) {
4747
if ($Help) {
@@ -53,13 +53,13 @@ function Install-Binary($install_args) {
5353

5454
$platforms = @{
5555
"x86_64-pc-windows-msvc" = @{
56-
"artifact_name" = "bencher-v0.4.21-windows-x86-64.exe"
56+
"artifact_name" = "bencher-v0.4.22-windows-x86-64.exe"
5757
"zip_ext" = ""
5858
"bins" = "bencher"
5959
"bin" = "bencher"
6060
}
6161
"aarch64-pc-windows-msvc" = @{
62-
"artifact_name" = "bencher-v0.4.21-windows-arm-64.exe"
62+
"artifact_name" = "bencher-v0.4.22-windows-arm-64.exe"
6363
"zip_ext" = ""
6464
"bins" = "bencher"
6565
"bin" = "bencher"

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ fi
1616
set -u
1717

1818
APP_NAME=bencher
19-
APP_VERSION="0.4.21"
20-
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.21}"
19+
APP_VERSION="0.4.22"
20+
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.22}"
2121
PRINT_VERBOSE=${INSTALLER_PRINT_VERBOSE:-0}
2222
PRINT_QUIET=${INSTALLER_PRINT_QUIET:-0}
2323
NO_MODIFY_PATH=${INSTALLER_NO_MODIFY_PATH:-0}
@@ -33,7 +33,7 @@ usage() {
3333
cat <<EOF
3434
install-cli.sh
3535
36-
Bencher CLI v0.4.21 Installer
36+
Bencher CLI v0.4.22 Installer
3737
3838
This script detects what platform you're on and fetches an appropriate archive from https://bencher.dev.
3939
It then unpacks the binaries and installs them to \$CARGO_HOME/bin (\$HOME/.cargo/bin).
@@ -127,25 +127,25 @@ download_binary_and_run_installer() {
127127
# Lookup what to download/unpack based on platform
128128
case "$_arch" in
129129
"x86_64-unknown-linux-gnu")
130-
_artifact_name="bencher-v0.4.21-linux-x86-64"
130+
_artifact_name="bencher-v0.4.22-linux-x86-64"
131131
_zip_ext=""
132132
_bins="bencher"
133133
_bin="bencher"
134134
;;
135135
"aarch64-unknown-linux-gnu")
136-
_artifact_name="bencher-v0.4.21-linux-arm-64"
136+
_artifact_name="bencher-v0.4.22-linux-arm-64"
137137
_zip_ext=""
138138
_bins="bencher"
139139
_bin="bencher"
140140
;;
141141
"x86_64-apple-darwin")
142-
_artifact_name="bencher-v0.4.21-macos-x86-64"
142+
_artifact_name="bencher-v0.4.22-macos-x86-64"
143143
_zip_ext=""
144144
_bins="bencher"
145145
_bin="bencher"
146146
;;
147147
"aarch64-apple-darwin")
148-
_artifact_name="bencher-v0.4.21-macos-arm-64"
148+
_artifact_name="bencher-v0.4.22-macos-arm-64"
149149
_zip_ext=""
150150
_bins="bencher"
151151
_bin="bencher"

services/console/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/console/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bencher-console",
33
"type": "module",
4-
"version": "0.4.21",
4+
"version": "0.4.22",
55
"scripts": {
66
"fmt": "npx biome format --write .",
77
"lint": "npx biome lint .",

services/console/src/chunks/reference/en/changelog.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Pending `v0.4.22`
1+
## `v0.4.22`
22
- Remove bloom filter in Perf Query when there is no branch head specified
33

44
## `v0.4.21`

0 commit comments

Comments
 (0)