Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions public/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,13 @@
"title": "Deprecated Ronin Data Feeds",
"topic": "Data Feeds"
},
{
"category": "release",
"date": "2026-01-13",
"description": "CRE CLI version 1.0.5 is now available with various small improvements and bug fixes.\n\nUpdate your CLI by running `cre update` when prompted, or follow the [CLI Installation guide](https://docs.chain.link/cre/getting-started/cli-installation) for fresh installations.",
"title": "CRE CLI v1.0.5",
"topic": "CRE"
},
{
"category": "integration",
"date": "2026-01-11",
Expand Down
127 changes: 0 additions & 127 deletions reports/llms-report.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/DownloadButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const DownloadButton = () => {
}

const handleClick = () => {
window.open("https://github.com/smartcontractkit/cre-cli/releases/tag/v1.0.4", "_blank", "noopener,noreferrer")
window.open("https://github.com/smartcontractkit/cre-cli/releases/tag/v1.0.5", "_blank", "noopener,noreferrer")
}

const handleMouseOver = (e) => {
Expand Down
31 changes: 17 additions & 14 deletions src/content/cre/getting-started/cli-installation/macos-linux.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
import { Aside, CopyText, PageTabs } from "@components"
import { DownloadButton } from "~/components/DownloadButton.tsx"

This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is **v1.0.4**.
This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is **v1.0.5**.

<PageTabs
pages={[
Expand Down Expand Up @@ -66,7 +66,7 @@ After the script completes, verify the installation:
cre version
```

**Expected output:** `cre version v1.0.4`
**Expected output:** `cre version v1.0.5`

<Aside type="note" title="macOS Gatekeeper">
If you see warnings about "unrecognized developer/source" on macOS, run:{" "}
Expand Down Expand Up @@ -117,18 +117,21 @@ shasum -a 256 cre_darwin_arm64.zip

**Verify against official checksums**

Compare the output with the official checksum below:
Compare the output with the official checksum from the [CRE CLI releases page](https://github.com/smartcontractkit/cre-cli/releases):

| <div style="width: 200px;">File</div> | SHA-256 Checksum |
| ------------------------------------- | ----------------------------------------------------------------------------------------- |
| `cre_darwin_amd64.zip` | <CopyText text="87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1" code /> |
| `cre_darwin_arm64.zip` | <CopyText text="e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c" code /> |
| `cre_linux_amd64.tar.gz` | <CopyText text="58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913" code /> |
| `cre_linux_amd64_ldd2-35.tar.gz` | <CopyText text="7218b517e9837687bfff6ff9de16108b57808f23e85263452b819e0a230717ef" code /> |
| `cre_linux_arm64.tar.gz` | <CopyText text="9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51" code /> |
| `cre_linux_arm64_ldd2-35.tar.gz` | <CopyText text="7afd0ab30dc4ecdfb45c2a5bdc75c1267c38984409d55f0d6646c55179975d4f" code /> |
1. Go to https://github.com/smartcontractkit/cre-cli/releases
2. Find the release version you downloaded (e.g., v1.0.5)
3. Under the **Assets** section, locate your downloaded file
4. Compare the SHA-256 checksum shown next to the file with your command output

If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
**Example:** For `cre_darwin_arm64.zip` in release v1.0.5, you'll see something like:

```
cre_darwin_arm64.zip
sha256:1359415a1f1baee7643107b82b3a0589a3627aef71018644e5c488960a97e955
```

If the checksums match, the file is authentic and safe to install. If they don't match, do not proceed with installation and contact the Chainlink team for assistance.

#### 2. Extract and install

Expand All @@ -151,7 +154,7 @@ If the checksum doesn't match, do not proceed with installation. Contact your Ch
1. **Rename the extracted binary to `cre`**

```bash
mv cre_v1.0.4_darwin_arm64 cre
mv cre_v1.0.5_darwin_arm64 cre
```

1. **Make it executable**:
Expand Down Expand Up @@ -224,7 +227,7 @@ cre version

**Expected output:**

You should see version information: `cre version v1.0.4`.
You should see version information: `cre version v1.0.5`.

**If it doesn't work:**

Expand Down
26 changes: 17 additions & 9 deletions src/content/cre/getting-started/cli-installation/windows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
import { Aside, CopyText, PageTabs } from "@components"
import { DownloadButton } from "~/components/DownloadButton.tsx"

This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is **v1.0.4**.
This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is **v1.0.5**.

<PageTabs
pages={[
Expand Down Expand Up @@ -65,7 +65,7 @@ After the script completes, **open a new PowerShell window** and verify the inst
cre version
```

**Expected output:** `cre version v1.0.4`
**Expected output:** `cre version v1.0.5`

### Manual installation

Expand Down Expand Up @@ -93,20 +93,28 @@ Get-FileHash cre_windows_amd64.zip -Algorithm SHA256

**Verify against the official checksum**

Compare the `Hash` value in the output with the official checksum below:
Compare the `Hash` value in the output with the official checksum from the [CRE CLI releases page](https://github.com/smartcontractkit/cre-cli/releases):

| <div style="width: 200px;">File</div> | SHA-256 Checksum |
| ------------------------------------- | ----------------------------------------------------------------------------------------- |
| `cre_windows_amd64.zip` | <CopyText text="372d16566479ff6bbfe9eb1d5cebe0e1e2a3c67062c6f0439fc96c735ddeaa18" code /> |
1. Go to https://github.com/smartcontractkit/cre-cli/releases
2. Find the release version you downloaded (e.g., v1.0.5)
3. Under the **Assets** section, locate `cre_windows_amd64.zip`
4. Compare the SHA-256 checksum shown next to the file with the `Hash` value from your PowerShell output

If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
**Example:** For `cre_windows_amd64.zip` in release v1.0.5, you'll see something like:

```
cre_windows_amd64.zip
sha256:372d16566479ff6bbfe9eb1d5cebe0e1e2a3c67062c6f0439fc96c735ddeaa18
```

If the checksums match, the file is authentic and safe to install. If they don't match, do not proceed with installation and contact the Chainlink team for assistance.

#### 2. Extract and install

1. Navigate to the directory where you downloaded the archive.
1. Right-click the `.zip` file and select **Extract All...**.
1. Choose a permanent location for the extracted folder (e.g., `C:\Program Files\cre-cli`).
1. Inside the extracted folder, rename the file `cre_v1.0.4_windows_amd64.exe` to `cre.exe`.
1. Inside the extracted folder, rename the file `cre_v1.0.5_windows_amd64.exe` to `cre.exe`.

#### 3. Add the CLI to your PATH

Expand All @@ -131,7 +139,7 @@ Open a new **PowerShell** or **Command Prompt** window and run:
cre version
```

You should see version information: `cre version v1.0.4`.
You should see version information: `cre version v1.0.5`.

## Next steps

Expand Down
Loading
Loading