Skip to content

Commit

Permalink
Bump CLI version in docs & marketing site (#8050)
Browse files Browse the repository at this point in the history
  • Loading branch information
siggisim authored Dec 13, 2024
1 parent a9f9b87 commit 4d143dc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ bb version
If you're already using Bazelisk, you can easily install the BuildBuddy CLI for your entire project by running:

```bash
echo "$(echo "buildbuddy-io/5.0.100"; cat .bazelversion)" > .bazelversion
echo "$(echo "buildbuddy-io/5.0.132"; cat .bazelversion)" > .bazelversion
```

This will simply prepend `buildbuddy-io/5.0.100` on a new line above your `.bazelversion` file like so:
This will simply prepend `buildbuddy-io/5.0.132` on a new line above your `.bazelversion` file like so:

```title=".bazelversion"
buildbuddy-io/5.0.100
buildbuddy-io/5.0.132
7.3.0
```

The version <span class="cli-version">5.0.25</span> of the BuildBuddy CLI will now automatically be used when you type `bazel` or `bazelisk` and continue to use the Bazel version specified on the second line of your `.bazelversion` file.
The version <span class="cli-version">5.0.132</span> of the BuildBuddy CLI will now automatically be used when you type `bazel` or `bazelisk` and continue to use the Bazel version specified on the second line of your `.bazelversion` file.

To find the latest version of the BuildBuddy CLI, you can view our releases page [here](https://github.com/buildbuddy-io/bazel/releases).

Expand Down
10 changes: 5 additions & 5 deletions website/src/pages/cli.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -331,13 +331,13 @@ function Component() {
<>
<div>
<Prompt />
<span>{`echo "$(echo "buildbuddy-io/5.0.25"; cat .bazelversion)" > .bazelversion`}</span>
<span>{`echo "$(echo "buildbuddy-io/5.0.132"; cat .bazelversion)" > .bazelversion`}</span>
</div>
</>,
<>
<div>
<Prompt />
<span>{`echo "$(echo "buildbuddy-io/5.0.25"; cat .bazelversion)" > .bazelversion`}</span>
<span>{`echo "$(echo "buildbuddy-io/5.0.132"; cat .bazelversion)" > .bazelversion`}</span>
</div>
<div>
<Prompt />
Expand All @@ -346,7 +346,7 @@ function Component() {
<>
<div>
<Prompt />
<span>{`echo "$(echo "buildbuddy-io/5.0.25"; cat .bazelversion)" > .bazelversion`}</span>
<span>{`echo "$(echo "buildbuddy-io/5.0.132"; cat .bazelversion)" > .bazelversion`}</span>
</div>
<div>
<Prompt />
Expand All @@ -356,7 +356,7 @@ function Component() {
<>
<div>
<Prompt />
<span>{`echo "$(echo "buildbuddy-io/5.0.25"; cat .bazelversion)" > .bazelversion`}</span>
<span>{`echo "$(echo "buildbuddy-io/5.0.132"; cat .bazelversion)" > .bazelversion`}</span>
</div>
<div>
<Prompt />
Expand All @@ -370,7 +370,7 @@ function Component() {
bigImage={true}
lessPadding={true}
flipped={false}
snippet={`echo "$(echo "buildbuddy-io/5.0.25"; cat .bazelversion)" > .bazelversion`}
snippet={`echo "$(echo "buildbuddy-io/5.0.132"; cat .bazelversion)" > .bazelversion`}
primaryButtonText=""
secondaryButtonText=""
/>
Expand Down

0 comments on commit 4d143dc

Please sign in to comment.