From d112ec81b6d41aa83201fff46c080210bcf5d4b9 Mon Sep 17 00:00:00 2001 From: Hexagon Date: Sun, 14 Apr 2024 00:59:49 +0200 Subject: [PATCH] Fix new regression --- .vscode/settings.json | 2 +- README.md | 2 +- application.meta.ts | 4 ++-- deno.json | 2 +- docs/src/changelog.md | 2 +- docs/src/examples/basic/pup.jsonc | 2 +- docs/src/index.md | 2 +- docs/src/installation.md | 2 +- versions.json | 18 ++++++++++++++++-- 9 files changed, 25 insertions(+), 11 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 29116db..473934b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,7 +7,7 @@ "/pup.json", "/pup.jsonc" ], - "url": "https://jsr.io/@pup/pup/1.0.0-rc.16/docs/pup.schema.json" + "url": "https://jsr.io/@pup/pup/1.0.0-rc.17/docs/pup.schema.json" } ] } diff --git a/README.md b/README.md index 840122f..c6f4794 100644 --- a/README.md +++ b/README.md @@ -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/pup@1.0.0-rc.16 setup --channel prerelease +deno run -Ar jsr:@pup/pup@1.0.0-rc.17 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 3c0199b..a54dc35 100644 --- a/application.meta.ts +++ b/application.meta.ts @@ -21,8 +21,8 @@ const Application = { name: "pup", - version: "1.0.0-rc.16", - url: "https://jsr.io/@pup/pup/$VERSION/pup.ts", + version: "1.0.0-rc.17", + url: "jsr:@pup/pup/$VERSION/pup.ts", 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) */ deno_unstable: "1.42.0", /* Minimum version of Deno required to run Pup (with --unstable-* flags) */ diff --git a/deno.json b/deno.json index 325e64e..cc88f1f 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@pup/pup", - "version": "1.0.0-rc.16", + "version": "1.0.0-rc.17", "exports": "./pup.ts", "fmt": { diff --git a/docs/src/changelog.md b/docs/src/changelog.md index c68c960..7e3b2f6 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -9,7 +9,7 @@ nav_order: 13 All notable changes to this project will be documented in this section. -## [1.0.0-rc.16] - 2024-04-14 +## [1.0.0-rc.17] - 2024-04-14 - fix(packaging): Fix regression bug in upgrader after moving to jsr.io diff --git a/docs/src/examples/basic/pup.jsonc b/docs/src/examples/basic/pup.jsonc index 6f5123f..5962ac4 100644 --- a/docs/src/examples/basic/pup.jsonc +++ b/docs/src/examples/basic/pup.jsonc @@ -1,6 +1,6 @@ { // Completely optional: Include $schema to get auto completion in VS Code etc... - "$schema": "https://jsr.io/@pup/pup/1.0.0-rc.16/docs/pup.schema.json", + "$schema": "https://jsr.io/@pup/pup/1.0.0-rc.17/docs/pup.schema.json", // Global logger configuration, all options can be ovverridden per process "logger": { diff --git a/docs/src/index.md b/docs/src/index.md index 202a940..18be263 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -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/pup@1.0.0-rc.16 setup --channel prerelease +deno run -Ar jsr:@pup/pup@1.0.0-rc.17 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 cbfe338..74d9391 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.16 setup --channel prerelease +deno run -Ar jsr:@pup/pup@1.0.0-rc.17 setup --channel prerelease ``` This command downloads the latest version of Pup and installs it on your system. diff --git a/versions.json b/versions.json index de4dd27..8f79796 100644 --- a/versions.json +++ b/versions.json @@ -2,9 +2,23 @@ "canary_url": "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts", "stable": [], "prerelease": [ + { + "version": "1.0.0-rc.17", + "url": "jsr:@pup/pup/1.0.0-rc.17/pup.ts", + "deno": null, + "deno_unstable": "1.42.0", + "default_permissions": [ + "--allow-env", + "--allow-read", + "--allow-write", + "--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease", + "--allow-net", + "--allow-run" + ] + }, { "version": "1.0.0-rc.16", - "url": "https://jsr.io/@pup/pup/1.0.0-rc.16/pup.ts", + "url": "jsr:@pup/pup/1.0.0-rc.16/pup.ts", "deno": null, "deno_unstable": "1.42.0", "default_permissions": [ @@ -18,7 +32,7 @@ }, { "version": "1.0.0-rc.15", - "url": "https://jsr.io/@pup/pup/1.0.0-rc.15/pup.ts", + "url": "jsr:@pup/pup/1.0.0-rc.15/pup.ts", "deno": null, "deno_unstable": "1.42.0", "default_permissions": [