Skip to content

Commit

Permalink
Release v0.4.17
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed Jul 5, 2024
1 parent 00229a9 commit 9ef86f9
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 46 deletions.
52 changes: 26 additions & 26 deletions 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
Expand Up @@ -10,7 +10,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.4.16"
version = "0.4.17"
authors = ["Everett Pompeii <everett@bencher.dev>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion services/action/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion services/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "Bencher API",
"version": "0.4.16"
"version": "0.4.17"
},
"paths": {
"/": {
Expand Down
10 changes: 5 additions & 5 deletions services/cli/templates/output/install-cli.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<#
.SYNOPSIS
Bencher CLI v0.4.16 Installer
Bencher CLI v0.4.17 Installer
.DESCRIPTION
Expand Down Expand Up @@ -33,15 +33,15 @@ Print help

param (
[Parameter(HelpMessage = "The URL of the directory where artifacts can be fetched from")]
[string]$ArtifactDownloadUrl = 'https://bencher.dev/download/0.4.16',
[string]$ArtifactDownloadUrl = 'https://bencher.dev/download/0.4.17',
[Parameter(HelpMessage = "Don't add the install directory to PATH")]
[switch]$NoModifyPath,
[Parameter(HelpMessage = "Print Help")]
[switch]$Help
)

$app_name = 'bencher'
$app_version = '0.4.16'
$app_version = '0.4.17'

function Install-Binary($install_args) {
if ($Help) {
Expand All @@ -53,13 +53,13 @@ function Install-Binary($install_args) {

$platforms = @{
"x86_64-pc-windows-msvc" = @{
"artifact_name" = "bencher-v0.4.16-windows-x86-64.exe"
"artifact_name" = "bencher-v0.4.17-windows-x86-64.exe"
"zip_ext" = ""
"bins" = "bencher"
"bin" = "bencher"
}
"aarch64-pc-windows-msvc" = @{
"artifact_name" = "bencher-v0.4.16-windows-arm-64.exe"
"artifact_name" = "bencher-v0.4.17-windows-arm-64.exe"
"zip_ext" = ""
"bins" = "bencher"
"bin" = "bencher"
Expand Down
14 changes: 7 additions & 7 deletions services/cli/templates/output/install-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ fi
set -u

APP_NAME=bencher
APP_VERSION="0.4.16"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.16}"
APP_VERSION="0.4.17"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.17}"
PRINT_VERBOSE=${INSTALLER_PRINT_VERBOSE:-0}
PRINT_QUIET=${INSTALLER_PRINT_QUIET:-0}
NO_MODIFY_PATH=${INSTALLER_NO_MODIFY_PATH:-0}
Expand All @@ -33,7 +33,7 @@ usage() {
cat <<EOF
install-cli.sh
Bencher CLI v0.4.16 Installer
Bencher CLI v0.4.17 Installer
This script detects what platform you're on and fetches an appropriate archive from https://bencher.dev.
It then unpacks the binaries and installs them to \$CARGO_HOME/bin (\$HOME/.cargo/bin).
Expand Down Expand Up @@ -127,25 +127,25 @@ download_binary_and_run_installer() {
# Lookup what to download/unpack based on platform
case "$_arch" in
"x86_64-unknown-linux-gnu")
_artifact_name="bencher-v0.4.16-linux-x86-64"
_artifact_name="bencher-v0.4.17-linux-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-unknown-linux-gnu")
_artifact_name="bencher-v0.4.16-linux-arm-64"
_artifact_name="bencher-v0.4.17-linux-arm-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"x86_64-apple-darwin")
_artifact_name="bencher-v0.4.16-macos-x86-64"
_artifact_name="bencher-v0.4.17-macos-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-apple-darwin")
_artifact_name="bencher-v0.4.16-macos-arm-64"
_artifact_name="bencher-v0.4.17-macos-arm-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
Expand Down
4 changes: 2 additions & 2 deletions services/console/package-lock.json

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

2 changes: 1 addition & 1 deletion services/console/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bencher-console",
"type": "module",
"version": "0.4.16",
"version": "0.4.17",
"scripts": {
"fmt": "npx biome format --write .",
"lint": "npx biome lint .",
Expand Down
2 changes: 1 addition & 1 deletion services/console/src/chunks/reference/en/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Pending `v0.4.17`
## `v0.4.17`
- Revamp UI for looking at resource details
- Remove cached Organization when logging out

Expand Down
2 changes: 1 addition & 1 deletion services/console/src/components/navbar/ProjectSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const ProjectSelect = (props: Props) => {
const project = p[i];
const slug = project?.slug;
if (slug === target) {
navigate(`/console/projects/${slug}/perf`);
navigate(`/console/projects/${slug}/plots`);
break;
}
}
Expand Down

0 comments on commit 9ef86f9

Please sign in to comment.