Skip to content

Commit

Permalink
Fix version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Apr 25, 2024
1 parent 43e45e2 commit a5c164c
Show file tree
Hide file tree
Showing 8 changed files with 55 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.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) */
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.33",
"version": "1.0.0-rc.34",

"exports": {
".": "./pup.ts",
Expand Down
16 changes: 16 additions & 0 deletions docs/pup.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,22 @@
],
"additionalProperties": false
}
},
"plugins": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"options": {}
},
"required": [
"url"
],
"additionalProperties": false
}
}
},
"required": [
Expand Down
2 changes: 1 addition & 1 deletion docs/src/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
{
Expand Down
6 changes: 6 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/basic-webinterface/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
28 changes: 28 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a5c164c

Please sign in to comment.