Skip to content

Commit

Permalink
Release v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed May 4, 2024
1 parent aebc099 commit 2f9a12b
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 37 deletions.
36 changes: 18 additions & 18 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 @@ -3,7 +3,7 @@ members = ["services/api", "services/cli", "lib/*", "plus/*", "xtask"]
resolver = "2"

[workspace.package]
version = "0.4.7"
version = "0.4.8"
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/swagger.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.7"
"version": "0.4.8"
},
"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.7 Installer
Bencher CLI v0.4.8 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.7',
[string]$ArtifactDownloadUrl = 'https://bencher.dev/download/0.4.8',
[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.7'
$app_version = '0.4.8'

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.7-windows-x86-64.exe"
"artifact_name" = "bencher-v0.4.8-windows-x86-64.exe"
"zip_ext" = ""
"bins" = "bencher"
"bin" = "bencher"
}
"aarch64-pc-windows-msvc" = @{
"artifact_name" = "bencher-v0.4.7-windows-arm-64.exe"
"artifact_name" = "bencher-v0.4.8-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.7"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.7}"
APP_VERSION="0.4.8"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.8}"
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.7 Installer
Bencher CLI v0.4.8 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.7-linux-x86-64"
_artifact_name="bencher-v0.4.8-linux-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-unknown-linux-gnu")
_artifact_name="bencher-v0.4.7-linux-arm-64"
_artifact_name="bencher-v0.4.8-linux-arm-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"x86_64-apple-darwin")
_artifact_name="bencher-v0.4.7-macos-x86-64"
_artifact_name="bencher-v0.4.8-macos-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-apple-darwin")
_artifact_name="bencher-v0.4.7-macos-arm-64"
_artifact_name="bencher-v0.4.8-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.7",
"version": "0.4.8",
"scripts": {
"fmt": "npx biome format --write .",
"typeshare": "typeshare ../.. --lang=typescript --output-file=./src/types/bencher.ts",
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.8`
## `v0.4.8`
- Add new user onboarding flow
- Fix server stats endpoint bug
- A very special thank you to [hamirmahal](https://github.com/hamirmahal) for their first contribution!
Expand Down

0 comments on commit 2f9a12b

Please sign in to comment.