Skip to content

Commit

Permalink
Release 1.0.0-rc.24
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Apr 17, 2024
1 parent caaea12 commit 7d06bb3
Show file tree
Hide file tree
Showing 15 changed files with 234 additions and 213 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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/[email protected].23 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].24 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
Expand Down
2 changes: 1 addition & 1 deletion application.meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

const Application = {
name: "pup",
version: "1.0.0-rc.23",
version: "1.0.0-rc.24",
url: "jsr:@pup/pup@$VERSION",
canary_url: "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts",
deno: null, /* Minimum stable version of Deno required to run Pup (without --unstable-* flags) */
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pup/pup",
"version": "1.0.0-rc.23",
"version": "1.0.0-rc.24",
"exports": {
".": "./pup.ts",
"./mod.ts": "./mod.ts",
Expand Down Expand Up @@ -40,7 +40,7 @@
"@cross/service": "jsr:@cross/service@^1.0.0",
"@cross/test": "jsr:@cross/test@^0.0.9",
"@cross/utils": "jsr:@cross/utils@^0.11.0",
"@hexagon/bundlee": "jsr:@hexagon/bundlee@^0.9.5",
"@hexagon/bundlee": "jsr:@hexagon/bundlee@^0.9.6",
"@hexagon/croner": "jsr:@hexagon/croner@^8.0.1",
"@oak/oak": "jsr:@oak/oak@^14.2.0",
"@std/assert": "jsr:@std/assert@^0.223.0",
Expand Down
5 changes: 5 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ nav_order: 13

All notable changes to this project will be documented in this section.

## [1.0.0-rc.24] - 2023-04-17

- chore(cli): Refactor of the cli entrypoint code
- fix(plugins): Fix web-interface plugin by switching bundlee mode from import to fetch mode

## [1.0.0-rc.23] - 2023-04-16

- fix(cli): Visual improvements for `--help`
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/basic-webinterface/pup.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
],
"plugins": [
{
// Use full uri to plugin, e.g. jsr:@pup/pup/plugins/web-interface
// Use full uri to plugin, e.g. jsr:@pup/pup@$VERSION/plugins/web-interface
"url": "../../plugins/web-interface/mod.ts",
"options": {
"port": 5000
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/splunk/pup.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"plugins": [
/* Enable splunk HEC plugin */
{
/* Use a full url to the plugin, from for example jsr:@pup/pup/plugins/splunk-hec... */
/* Use a full url to the plugin, example: jsr:@pup/pup@$VERSION/plugins/splunk-hec */
"url": "../../plugins/splunk-hec/mod.ts",
"options": {
/*
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/telemetry/task-with-telemetry-1.ts
Original file line number Diff line number Diff line change
@@ -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/[email protected].23/telemetry"
import { PupTelemetry } from "jsr:@pup/[email protected].24/telemetry"
const telemetry = new PupTelemetry(1)

// The task
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/telemetry/task-with-telemetry-2.ts
Original file line number Diff line number Diff line change
@@ -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/[email protected].23/telemetry"
import { PupTelemetry } from "jsr:@pup/[email protected].24/telemetry"
const telemetry = new PupTelemetry(1)

// The task
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,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/[email protected].23 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].24 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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].23 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].24 setup --channel prerelease
```

This command downloads the latest version of Pup and installs it on your system.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/usage/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].23"]
RUN ["deno","install","-Afrn","pup", "jsr:@pup/[email protected].24"]
# Go!
ENTRYPOINT ["sh", "-c", "cd /app && pup run"]
Expand Down
Loading

0 comments on commit 7d06bb3

Please sign in to comment.