Skip to content

Commit

Permalink
Release v0.4.29
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed Nov 30, 2024
1 parent 2c48192 commit c84caab
Show file tree
Hide file tree
Showing 16 changed files with 45 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 @@ -11,7 +11,7 @@ exclude = ["services/benchers", "services/cargo-bencher"]
resolver = "2"

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ Otherwise, it will default to using the latest CLI version.
```yaml
- uses: bencherdev/bencher@main
with:
version: 0.4.28
version: 0.4.29
```

Specify an exact version if using [Bencher _Self-Hosted_](https://bencher.dev/docs/explanation/bencher-self-hosted/).
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.28"
"version": "0.4.29"
},
"paths": {
"/": {
Expand Down
6 changes: 3 additions & 3 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.28 Installer
Bencher CLI v0.4.29 Installer
.DESCRIPTION
Expand Down Expand Up @@ -36,9 +36,9 @@ Print help

param (
[Parameter(HelpMessage = "The version of the application to install")]
[string]$AppVersion = $(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.4.28' }),
[string]$AppVersion = $(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.4.29' }),
[Parameter(HelpMessage = "The URL of the directory where artifacts can be fetched from")]
[string]$ArtifactDownloadUrl = "https://bencher.dev/download/$(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.4.28' })",
[string]$ArtifactDownloadUrl = "https://bencher.dev/download/$(if ($env:BENCHER_VERSION) { $env:BENCHER_VERSION } else { '0.4.29' })",
[Parameter(HelpMessage = "Don't add the install directory to PATH")]
[switch]$NoModifyPath,
[Parameter(HelpMessage = "Print Help")]
Expand Down
2 changes: 1 addition & 1 deletion services/cli/templates/output/install-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fi
set -u

APP_NAME=bencher
APP_VERSION="${BENCHER_VERSION:-0.4.28}"
APP_VERSION="${BENCHER_VERSION:-0.4.29}"
ARTIFACT_DOWNLOAD_URL="${INSTALLER_DOWNLOAD_URL:-https://bencher.dev/download/$APP_VERSION}"
PRINT_VERBOSE=${INSTALLER_PRINT_VERBOSE:-0}
PRINT_QUIET=${INSTALLER_PRINT_QUIET:-0}
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.28",
"version": "0.4.29",
"scripts": {
"fmt": "npx biome format --write .",
"lint": "npx biome lint .",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```yaml
- uses: bencherdev/bencher@main
with:
version: 0.4.28
version: 0.4.29
```
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Pending `v0.4.29`
## `v0.4.29`
- Improve Pinned Plots loading fallback
- Return 404 Not Found for all resource endpoints when checking for both existence and permissions
- Update CLI install scripts to be able to set the `BENCHER_VERSION`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ Press Ctrl+C to stop Bencher Self-Hosted.
🐰 Bencher Self-Hosted logs...
Jan 08 16:49:07.727 INFO 🐰 Bencher API Server v0.4.28
Jan 08 16:49:07.727 INFO 🐰 Bencher API Server v0.4.29
...
```
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
```
$ bencher --version
bencher 0.4.28
bencher 0.4.29
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```sh
export BENCHER_VERSION=0.4.28; curl --proto '=https' --tlsv1.2 -sSfL https://bencher.dev/download/install-cli.sh | sh
export BENCHER_VERSION=0.4.29; curl --proto '=https' --tlsv1.2 -sSfL https://bencher.dev/download/install-cli.sh | sh
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```powershell
$env:BENCHER_VERSION="0.4.28"; irm https://bencher.dev/download/install-cli.ps1 | iex
$env:BENCHER_VERSION="0.4.29"; irm https://bencher.dev/download/install-cli.ps1 | iex
```
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import { BENCHER_VERSION } from "../../../util/ext";
For Linux, Mac, and other Unix-like systems run the following in your terminal:

```sh
export BENCHER_VERSION=0.4.28; curl --proto '=https' --tlsv1.2 -sSfL https://bencher.dev/download/install-cli.sh | sh
export BENCHER_VERSION=0.4.29; curl --proto '=https' --tlsv1.2 -sSfL https://bencher.dev/download/install-cli.sh | sh
```

<h3>Windows</h3>
For Windows systems run the following in a _PowerShell_ terminal:

```powershell
$env:BENCHER_VERSION="0.4.28"; irm https://bencher.dev/download/install-cli.ps1 | iex
$env:BENCHER_VERSION="0.4.29"; irm https://bencher.dev/download/install-cli.ps1 | iex
```

<br />
Expand Down

0 comments on commit c84caab

Please sign in to comment.