diff --git a/README.md b/README.md index 2b544f0..a93b13d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ _For detailed documentation, visit [pup.56k.guru](https://pup.56k.guru)._ To install Pup, open your terminal and execute the following command: ```bash -deno run -Ar jsr:@pup/pup@1.0.0-rc.27 setup --channel prerelease +deno run -Ar jsr:@pup/pup@1.0.0-rc.28 setup --channel prerelease ``` This command downloads the latest version of Pup and installs it on your system. The `--channel prerelease` option is included as there is no stable version of Pup yet. Read more abour release diff --git a/docs/src/examples/telemetry/task-with-telemetry-1.ts b/docs/src/examples/telemetry/task-with-telemetry-1.ts index b83d099..4b4db31 100644 --- a/docs/src/examples/telemetry/task-with-telemetry-1.ts +++ b/docs/src/examples/telemetry/task-with-telemetry-1.ts @@ -1,6 +1,6 @@ // See docs/examples/telemetry/README.md for full documentation on telemetry, including using the IPC // - Pin this to the latest version of pup, or include in import map -import { PupTelemetry } from "jsr:@pup/pup@1.0.0-rc.27/telemetry" +import { PupTelemetry } from "jsr:@pup/pup@1.0.0-rc.28/telemetry" const telemetry = new PupTelemetry(1) // The task diff --git a/docs/src/examples/telemetry/task-with-telemetry-2.ts b/docs/src/examples/telemetry/task-with-telemetry-2.ts index 3b4b4a2..48e38b2 100644 --- a/docs/src/examples/telemetry/task-with-telemetry-2.ts +++ b/docs/src/examples/telemetry/task-with-telemetry-2.ts @@ -1,6 +1,6 @@ // See docs/examples/telemetry/README.md for full documentation on telemetry, including using the IPC // - Pin this to the latest version of pup, or include in import map -import { PupTelemetry } from "jsr:@pup/pup@1.0.0-rc.27/telemetry" +import { PupTelemetry } from "jsr:@pup/pup@1.0.0-rc.28/telemetry" const telemetry = new PupTelemetry(1) // The task diff --git a/docs/src/index.md b/docs/src/index.md index 2fff06f..c384c35 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -31,7 +31,7 @@ Pup is centered on a single configuration file, `pup.json`, which manages all as To install Pup, open your terminal and execute the following command: ```bash -deno run -Ar jsr:@pup/pup@1.0.0-rc.27 setup --channel prerelease +deno run -Ar jsr:@pup/pup@1.0.0-rc.28 setup --channel prerelease ``` This command downloads the latest version of Pup and installs it on your system. The `--channel prerelease` option is included as there is no stable version of Pup yet. Read more abour release diff --git a/docs/src/installation.md b/docs/src/installation.md index b1425c3..3e500de 100644 --- a/docs/src/installation.md +++ b/docs/src/installation.md @@ -20,7 +20,7 @@ Before proceeding with the installation, ensure that you have the following inst To install Pup, open your terminal and execute the following command: ```bash -deno run -Ar jsr:@pup/pup@1.0.0-rc.27 setup --channel prerelease +deno run -Ar jsr:@pup/pup@1.0.0-rc.28 setup --channel prerelease ``` This command downloads the latest version of Pup and installs it on your system. diff --git a/docs/src/usage/service.md b/docs/src/usage/service.md index 7a61a21..b26a151 100644 --- a/docs/src/usage/service.md +++ b/docs/src/usage/service.md @@ -94,7 +94,7 @@ RUN mkdir /app COPY . /app/ # Install pup - Pin this url to a specific version in production -RUN ["deno","install","-Afrn","pup", "jsr:@pup/pup@1.0.0-rc.27"] +RUN ["deno","install","-Afrn","pup", "jsr:@pup/pup@1.0.0-rc.28"] # Go! ENTRYPOINT ["sh", "-c", "cd /app && pup run"]