From 84a8e811c3c2e910656f51508eb67857906f0ed8 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sat, 19 Nov 2022 22:07:09 -0800 Subject: [PATCH] Chore: rebuild with go 1.19.3 and include in bin name --- packages/common/src/releases.ts | 4 +++- readme.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/common/src/releases.ts b/packages/common/src/releases.ts index 6172dd77..ef3807d4 100644 --- a/packages/common/src/releases.ts +++ b/packages/common/src/releases.ts @@ -1,6 +1,8 @@ import { find, last } from '@s-libs/micro-dash' import { assertExists } from './assert' +export const GO_VERSION = `1.19.3` + export const RELEASES = { ermine: { weight: 1, @@ -45,7 +47,7 @@ export const binFor = ( version: VersionId = 'latest' ) => { const _version = versionFor(platformId, version) - return `pocketbase-${platformId}-${_version}` + return `pocketbase-go${GO_VERSION}-${platformId}-${_version}` } export const humanVersion = (platformId: PlatformId, version: VersionId) => { diff --git a/readme.md b/readme.md index 8817feed..f10cb259 100644 --- a/readme.md +++ b/readme.md @@ -136,7 +136,7 @@ open https://pockethost.io **next** -- [ ] Chore: rebuild with go 1.19.3 and include in bin name +- [x] Chore: rebuild with go 1.19.3 and include in bin name - [ ] Bugfix: Disallow backups if data dir doesn't exist **0.5.2**