Skip to content

Commit

Permalink
Fix #21, auto start services after install on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Nov 19, 2024
1 parent 7d74c6d commit c9915d9
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
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.3",
version: "1.0.4",
url: "jsr:@pup/pup@$VERSION",
description: "Powerful universal process manager, designed to keep your scripts, applications and services alive.",
canary_url: "https://raw.githubusercontent.com/Hexagon/pup/refs/heads/dev/pup.ts",
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pup/pup",
"version": "1.0.3",
"version": "1.0.4",

"exports": {
".": "./pup.ts",
Expand Down Expand Up @@ -42,7 +42,7 @@
"@cross/jwt": "jsr:@cross/jwt@~0.5.0",
"@cross/kv": "jsr:@cross/kv@~0.17.1",
"@cross/runtime": "jsr:@cross/runtime@~1.1.0",
"@cross/service": "jsr:@cross/service@~1.0.5",
"@cross/service": "jsr:@cross/service@^1.0.6",
"@cross/test": "jsr:@cross/test@~0.0.9",
"@cross/utils": "jsr:@cross/utils@^0.16.0",
"@hexagon/croner": "jsr:@hexagon/croner@~9.0.0",
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.3"
"$PUP_VERSION": "1.0.4"
},
"top_links": [
{
Expand Down
4 changes: 4 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ nav_order: 13

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

## [1.0.4] - 2024-11-19

- fix(core): Fix service auto start after install on Windows by upgrading dependency @cross/service

## [1.0.3] - 2024-11-06

- fix(core): Fix service installation on Windows by upgrading dependency @cross/service
Expand Down
15 changes: 15 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"canary_url": "https://raw.githubusercontent.com/Hexagon/pup/refs/heads/dev/pup.ts",
"stable": [
{
"version": "1.0.4",
"url": "jsr:@pup/pup@1.0.4",
"deno": "1.44.0",
"deno_unstable": "1.44.0",
"default_permissions": [
"--allow-env",
"--allow-read",
"--allow-write",
"--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease,uid,gid",
"--allow-net",
"--allow-run",
"--allow-ffi"
]
},
{
"version": "1.0.3",
"url": "jsr:@pup/pup@1.0.3",
Expand Down

0 comments on commit c9915d9

Please sign in to comment.