Skip to content

Commit

Permalink
Release v0.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed Jun 25, 2024
1 parent afa3efb commit ed86999
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 45 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.14"
version = "0.4.15"
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.14"
"version": "0.4.15"
},
"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.14 Installer
Bencher CLI v0.4.15 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.14',
[string]$ArtifactDownloadUrl = 'https://bencher.dev/download/0.4.15',
[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.14'
$app_version = '0.4.15'

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.14-windows-x86-64.exe"
"artifact_name" = "bencher-v0.4.15-windows-x86-64.exe"
"zip_ext" = ""
"bins" = "bencher"
"bin" = "bencher"
}
"aarch64-pc-windows-msvc" = @{
"artifact_name" = "bencher-v0.4.14-windows-arm-64.exe"
"artifact_name" = "bencher-v0.4.15-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.14"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.14}"
APP_VERSION="0.4.15"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.15}"
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.14 Installer
Bencher CLI v0.4.15 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.14-linux-x86-64"
_artifact_name="bencher-v0.4.15-linux-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-unknown-linux-gnu")
_artifact_name="bencher-v0.4.14-linux-arm-64"
_artifact_name="bencher-v0.4.15-linux-arm-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"x86_64-apple-darwin")
_artifact_name="bencher-v0.4.14-macos-x86-64"
_artifact_name="bencher-v0.4.15-macos-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-apple-darwin")
_artifact_name="bencher-v0.4.14-macos-arm-64"
_artifact_name="bencher-v0.4.15-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.14",
"version": "0.4.15",
"scripts": {
"fmt": "npx biome format --write .",
"lint": "npx biome lint .",
Expand Down
3 changes: 2 additions & 1 deletion services/console/src/chunks/reference/en/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## Pending `v0.4.15`
## `v0.4.15`
- Fix 404 error for dedicated Metric pages in Console
- Create Branch and Testbed, if they do not exist for a Report on the API server
- Remove Branch and Testbed `soft` creation
- Add Docker daemon check to CLI commands

## `v0.4.14`
- Fix iai-callgrind adapter bug
Expand Down

0 comments on commit ed86999

Please sign in to comment.