Skip to content

Commit

Permalink
Fix new regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Apr 13, 2024
1 parent c60bcbf commit d112ec8
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
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].16 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].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
Expand Down
4 changes: 2 additions & 2 deletions application.meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) */
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pup/pup",
"version": "1.0.0-rc.16",
"version": "1.0.0-rc.17",
"exports": "./pup.ts",

"fmt": {
Expand Down
2 changes: 1 addition & 1 deletion docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/basic/pup.jsonc
Original file line number Diff line number Diff line change
@@ -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": {
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].16 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].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
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].16 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].17 setup --channel prerelease
```

This command downloads the latest version of Pup and installs it on your system.
Expand Down
18 changes: 16 additions & 2 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand All @@ -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": [
Expand Down

0 comments on commit d112ec8

Please sign in to comment.