From a5c164cf25d615a4829aee24653dccf9d4f3f75f Mon Sep 17 00:00:00 2001 From: Hexagon Date: Thu, 25 Apr 2024 20:36:15 +0200 Subject: [PATCH] Fix version numbers --- README.md | 2 +- application.meta.ts | 2 +- deno.json | 2 +- docs/pup.schema.json | 16 +++++++++++ docs/src/_data.json | 2 +- docs/src/changelog.md | 6 ++++ .../src/examples/basic-webinterface/README.md | 2 +- versions.json | 28 +++++++++++++++++++ 8 files changed, 55 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8c1e8cc..7967e69 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.32 setup --channel prerelease +deno run -Ar jsr:@pup/pup@1.0.0-rc.34 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/application.meta.ts b/application.meta.ts index 21cd298..8668893 100644 --- a/application.meta.ts +++ b/application.meta.ts @@ -21,7 +21,7 @@ const Application = { name: "pup", - version: "1.0.0-rc.33", + version: "1.0.0-rc.34", 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) */ diff --git a/deno.json b/deno.json index 706547f..c056d84 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@pup/pup", - "version": "1.0.0-rc.33", + "version": "1.0.0-rc.34", "exports": { ".": "./pup.ts", diff --git a/docs/pup.schema.json b/docs/pup.schema.json index 4f86d5d..fed6e38 100644 --- a/docs/pup.schema.json +++ b/docs/pup.schema.json @@ -257,6 +257,22 @@ ], "additionalProperties": false } + }, + "plugins": { + "type": "array", + "items": { + "type": "object", + "properties": { + "url": { + "type": "string" + }, + "options": {} + }, + "required": [ + "url" + ], + "additionalProperties": false + } } }, "required": [ diff --git a/docs/src/_data.json b/docs/src/_data.json index 9b58703..ee6bcc4 100644 --- a/docs/src/_data.json +++ b/docs/src/_data.json @@ -6,7 +6,7 @@ "description": "Universal Process Manager" }, "substitute": { - "$PUP_VERSION": "1.0.0-rc.33" + "$PUP_VERSION": "1.0.0-rc.34" }, "top_links": [ { diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 4622d7a..8f2593c 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -9,6 +9,12 @@ nav_order: 13 All notable changes to this project will be documented in this section. +## [1.0.0-rc.34] - 2024-04-25 + +## Added + +- Fix version numbers in release + ## [1.0.0-rc.33] - 2024-04-25 ## Added diff --git a/docs/src/examples/basic-webinterface/README.md b/docs/src/examples/basic-webinterface/README.md index d505bc5..f0e0061 100644 --- a/docs/src/examples/basic-webinterface/README.md +++ b/docs/src/examples/basic-webinterface/README.md @@ -27,7 +27,7 @@ To activate the web interface plugin, set up the `plugins:`-section of your `pup "processes": [/* ... */], "plugins": [ { - "url": "jsr:@pup/pup@$PUP_VERSION/plugins/web-interface", + "url": "jsr:@pup/plugin-web-interface", "options": { "port": 5000 } diff --git a/versions.json b/versions.json index 55fade8..88a1c5c 100644 --- a/versions.json +++ b/versions.json @@ -2,6 +2,34 @@ "canary_url": "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts", "stable": [], "prerelease": [ + { + "version": "1.0.0-rc.34", + "url": "jsr:@pup/pup@1.0.0-rc.34", + "deno": null, + "deno_unstable": "1.42.0", + "default_permissions": [ + "--allow-env", + "--allow-read", + "--allow-write", + "--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease,uid,gid", + "--allow-net", + "--allow-run" + ] + }, + { + "version": "1.0.0-rc.33", + "url": "jsr:@pup/pup@1.0.0-rc.33", + "deno": null, + "deno_unstable": "1.42.0", + "default_permissions": [ + "--allow-env", + "--allow-read", + "--allow-write", + "--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease,uid,gid", + "--allow-net", + "--allow-run" + ] + }, { "version": "1.0.0-rc.32", "url": "jsr:@pup/pup@1.0.0-rc.32",