Skip to content

Commit

Permalink
Prepare README and Download links for 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Westwooo committed Sep 10, 2024
1 parent 1ed5025 commit a475b81
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ The documentation is available [here](https://couchbase.sh/docs/).

First, download the archive for your operating system.

- Linux: [cbsh-x86_64-unknown-linux-gnu.tar.gz](https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-x86_64-unknown-linux-gnu.tar.gz)
- macOS: [cbsh-x86_64-apple-darwin.zip](https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-x86_64-apple-darwin.zip)
- Linux aarch64 [cbsh-aarch64-unknown-linux-gnu.tar.gz](https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-aarch64-unknown-linux-gnu.tar.gz)
- macOS aarch64: [cbsh-aarch64-apple-darwin.zip](https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-aarch64-apple-darwin.zip)
- Windows: [cbsh-x86_64-pc-windows-msvc.zip](https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-x86_64-pc-windows-msvc.zip)
- Linux: [cbsh-x86_64-unknown-linux-gnu.tar.gz](https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-x86_64-unknown-linux-gnu.tar.gz)
- macOS: [cbsh-x86_64-apple-darwin.zip](https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-x86_64-apple-darwin.zip)
- Linux aarch64 [cbsh-aarch64-unknown-linux-gnu.tar.gz](https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-aarch64-unknown-linux-gnu.tar.gz)
- macOS aarch64: [cbsh-aarch64-apple-darwin.zip](https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-aarch64-apple-darwin.zip)
- Windows: [cbsh-x86_64-pc-windows-msvc.zip](https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-x86_64-pc-windows-msvc.zip)

You do not need any extra dependencies to run `cbsh`, it comes "batteries included".

Expand All @@ -25,7 +25,7 @@ After extracting the archive, run the `cbsh` binary in your terminal.

```
❯ ./cbsh --version
The Couchbase Shell 0.75.1
The Couchbase Shell 1.0.0
```

## Basic Usage
Expand Down Expand Up @@ -145,7 +145,7 @@ If you just want to use it and don't want to bother compiling all the time, you

```
❯ cargo install --path .
Installing couchbase-shell v0.75.1 (/Users/michaelnitschinger/couchbase/code/rust/couchbase-shell)
Installing couchbase-shell v1.0.0 (/Users/michaelnitschinger/couchbase/code/rust/couchbase-shell)
Updating crates.io index
Downloaded plist v1.2.1
Downloaded onig v6.3.0
Expand Down
14 changes: 7 additions & 7 deletions docs/quickstart.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

=== Installation

The current latest version is *0.92*. The version of `cbsh` is kept in line with the underlying version of nushell that is supported.
The current latest version is *1.0.0*.

There are a couple ways you can get access to `cbsh`, the easiest one is to download our pre-built binaries for your platform of choice:

- Linux: https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-x86_64-unknown-linux-gnu.tar.gz[cbsh-x86_64-unknown-linux-gnu.tar.gz]
- macOS: https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-x86_64-apple-darwin.zip[cbsh-x86_64-apple-darwin.zip]
- Linux aarch64: https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-aarch64-unknown-linux-gnu.tar.gz[cbsh-aarch64-unknown-linux-gnu.tar.gz]
- macOS aarch64: https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-aarch64-apple-darwin.zip[cbsh-aarch64-apple-darwin.zip]
- Windows: https://github.com/couchbaselabs/couchbase-shell/releases/download/v0.75.1/cbsh-x86_64-pc-windows-msvc.zip[cbsh-x86_64-pc-windows-msvc.zip]
- Linux: https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-x86_64-unknown-linux-gnu.tar.gz[cbsh-x86_64-unknown-linux-gnu.tar.gz]
- macOS: https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-x86_64-apple-darwin.zip[cbsh-x86_64-apple-darwin.zip]
- Linux aarch64: https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-aarch64-unknown-linux-gnu.tar.gz[cbsh-aarch64-unknown-linux-gnu.tar.gz]
- macOS aarch64: https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-aarch64-apple-darwin.zip[cbsh-aarch64-apple-darwin.zip]
- Windows: https://github.com/couchbaselabs/couchbase-shell/releases/download/v1.0.0/cbsh-x86_64-pc-windows-msvc.zip[cbsh-x86_64-pc-windows-msvc.zip]

Once you've downloaded the `zip` file, extract it and switch into the just created directory.
The following example shows it for mac, but it works very similar if you are on linux (just align the commands with the file you just downloaded):
Expand All @@ -25,7 +25,7 @@ You can now run the `cbsh` binary:

```
❯ ./cbsh --version
The Couchbase Shell 0.75.1
The Couchbase Shell 1.0.0
```

TIP: If you are running a recent macOS release (i.e. 10.15.x), you'll likely see an error similar to *"cbsh" was blocked from use because it is not from an identified developer*.
Expand Down

0 comments on commit a475b81

Please sign in to comment.