From e01732ecd2446492650b13024e38c820cf78371f Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Tue, 15 Apr 2025 10:56:19 -0400 Subject: [PATCH] chore: fix nix hash and docs version --- docs/Bare-Metal.md | 2 +- docs/Integrated-Mode.md | 4 ++-- docs/Simple-Mode.md | 2 +- nix/agent.nix | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/Bare-Metal.md b/docs/Bare-Metal.md index a1fb70c..b4be606 100644 --- a/docs/Bare-Metal.md +++ b/docs/Bare-Metal.md @@ -30,7 +30,7 @@ Clone the Headplane repository, install dependencies, and build the project: ```sh git clone https://github.com/tale/headplane cd headplane -git checkout 0.5.10 # Or whatever tag you want to use +git checkout v0.6.0 # Or whatever tag you want to use pnpm install pnpm build ``` diff --git a/docs/Integrated-Mode.md b/docs/Integrated-Mode.md index e2a286b..b60492f 100644 --- a/docs/Integrated-Mode.md +++ b/docs/Integrated-Mode.md @@ -34,7 +34,7 @@ Here is what a sample Docker Compose deployment would look like: services: headplane: # I recommend you pin the version to a specific release - image: ghcr.io/tale/headplane:0.5.10 + image: ghcr.io/tale/headplane:0.6.0 container_name: headplane restart: unless-stopped ports: @@ -154,7 +154,7 @@ spec: serviceAccountName: default containers: - name: headplane - image: ghcr.io/tale/headplane:0.5.10 + image: ghcr.io/tale/headplane:0.6.0 env: # Set these if the pod name for Headscale is not static # We will use the downward API to get the pod name instead diff --git a/docs/Simple-Mode.md b/docs/Simple-Mode.md index cc352a6..7b7068b 100644 --- a/docs/Simple-Mode.md +++ b/docs/Simple-Mode.md @@ -19,7 +19,7 @@ Here is what a sample Docker Compose deployment would look like: services: headplane: # I recommend you pin the version to a specific release - image: ghcr.io/tale/headplane:0.5.10 + image: ghcr.io/tale/headplane:0.6.0 container_name: headplane restart: unless-stopped ports: diff --git a/nix/agent.nix b/nix/agent.nix index 884944d..2c7bc70 100644 --- a/nix/agent.nix +++ b/nix/agent.nix @@ -3,7 +3,7 @@ buildGoModule { pname = "hp_agent"; version = (builtins.fromJSON (builtins.readFile ../package.json)).version; src = ../.; - vendorHash = "sha256-G0kahv3mPTL/mxU2U+0IytJaFVPXMbMBktbLMfM0BO8="; + vendorHash = "sha256-5TmX9ZUotNC3ZnNWRlyugAmzQG/WSZ66jFfGljql/ww="; ldflags = ["-s" "-w"]; env.CGO_ENABLED = 0; }