Skip to content

Commit

Permalink
Release 1.0.0-rc.29
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Apr 22, 2024
1 parent 7004529 commit 029241f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 11 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/[email protected].28 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].29 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.28",
version: "1.0.0-rc.29",
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.28",
"version": "1.0.0-rc.29",

"exports": {
".": "./pup.ts",
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.28"
"$PUP_VERSION": "1.0.0-rc.29"
},
"top_links": [
{
Expand Down
14 changes: 7 additions & 7 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ nav_order: 13

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

## [1.0.0-rc.29] - Unreleased
## [1.0.0-rc.29] - 2024-04-22

- fix(docs): Update docs to include the latest features.
- fix(core): Fix regression which caused an error when running without configuration.
- fix(watcher): Fix an issue where the watcher prevented the main process to exit on termination.
- fix(cli): Fix pup init

## [1.0.0-rc.28] - 2023-04-22
## [1.0.0-rc.28] - 2024-04-22

- fix(core): Generate secret before starting main process.

## [1.0.0-rc.27] - 2023-04-21
## [1.0.0-rc.27] - 2024-04-21

- fix(upgrader): Update upgrader. **If coming from a previous version, you'll have to run upgrade twice to make pup work**

## [1.0.0-rc.26] - 2023-04-21
## [1.0.0-rc.26] - 2024-04-21

- fix(core): Remove stray console.log
- fix(core): Fix working dir different from current dir
Expand All @@ -41,16 +41,16 @@ All notable changes to this project will be documented in this section.
- change(core): Expose port in the application status
- fix(core): Fix `enable-service` in Windows by updating dependency `@cross/service`

## [1.0.0-rc.25] - 2023-04-17
## [1.0.0-rc.25] - 2024-04-17

- fix(plugins): Workaround for jsr bug affecting the web-interface plugin

## [1.0.0-rc.24] - 2023-04-17
## [1.0.0-rc.24] - 2024-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
## [1.0.0-rc.23] - 2024-04-16

- fix(cli): Visual improvements for `--help`
- fix(cli): Compacted and colorised output of `status`
Expand Down
14 changes: 14 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
"canary_url": "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts",
"stable": [],
"prerelease": [
{
"version": "1.0.0-rc.29",
"url": "jsr:@pup/[email protected]",
"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.28",
"url": "jsr:@pup/[email protected]",
Expand Down

0 comments on commit 029241f

Please sign in to comment.