Skip to content

Commit

Permalink
Release v0.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed Jun 15, 2024
1 parent d1028f8 commit cc8b0d5
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 40 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/bencher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,9 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
smoke_test: docker
# This will not work on release as it tries to pull the current version
# - os: ubuntu-latest
# smoke_test: docker
- os: macos-latest
smoke_test: localhost
# https://github.com/actions/runner-images/issues/17#issuecomment-614726536
Expand Down
38 changes: 19 additions & 19 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.12"
version = "0.4.13"
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.12"
"version": "0.4.13"
},
"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.12 Installer
Bencher CLI v0.4.13 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.12',
[string]$ArtifactDownloadUrl = 'https://bencher.dev/download/0.4.13',
[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.12'
$app_version = '0.4.13'

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.12-windows-x86-64.exe"
"artifact_name" = "bencher-v0.4.13-windows-x86-64.exe"
"zip_ext" = ""
"bins" = "bencher"
"bin" = "bencher"
}
"aarch64-pc-windows-msvc" = @{
"artifact_name" = "bencher-v0.4.12-windows-arm-64.exe"
"artifact_name" = "bencher-v0.4.13-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.12"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.12}"
APP_VERSION="0.4.13"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/0.4.13}"
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.12 Installer
Bencher CLI v0.4.13 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.12-linux-x86-64"
_artifact_name="bencher-v0.4.13-linux-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-unknown-linux-gnu")
_artifact_name="bencher-v0.4.12-linux-arm-64"
_artifact_name="bencher-v0.4.13-linux-arm-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"x86_64-apple-darwin")
_artifact_name="bencher-v0.4.12-macos-x86-64"
_artifact_name="bencher-v0.4.13-macos-x86-64"
_zip_ext=""
_bins="bencher"
_bin="bencher"
;;
"aarch64-apple-darwin")
_artifact_name="bencher-v0.4.12-macos-arm-64"
_artifact_name="bencher-v0.4.13-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.12",
"version": "0.4.13",
"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.13`
## `v0.4.13`
- Add `Required` to required query params in docs (Thank you [eddyashton](https://github.com/eddyashton))
- Auto-log out in Console UI for expired sessions
- Fix wordmark color for default theme initialization
Expand Down

0 comments on commit cc8b0d5

Please sign in to comment.