diff --git a/apps/dotcom/version.ts b/apps/dotcom/version.ts index 716d8609d..682114a34 100644 --- a/apps/dotcom/version.ts +++ b/apps/dotcom/version.ts @@ -1,4 +1,4 @@ // This file is automatically generated by scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '2.0.0-beta.4' +export const version = '2.0.0-beta.5' diff --git a/packages/editor/src/version.ts b/packages/editor/src/version.ts index 716d8609d..682114a34 100644 --- a/packages/editor/src/version.ts +++ b/packages/editor/src/version.ts @@ -1,4 +1,4 @@ // This file is automatically generated by scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '2.0.0-beta.4' +export const version = '2.0.0-beta.5' diff --git a/packages/tldraw/src/lib/ui/version.ts b/packages/tldraw/src/lib/ui/version.ts index 55ffdc2ac..682114a34 100644 --- a/packages/tldraw/src/lib/ui/version.ts +++ b/packages/tldraw/src/lib/ui/version.ts @@ -1 +1,4 @@ +// This file is automatically generated by scripts/refresh-assets.ts. +// Do not edit manually. Or do, I'm a comment, not a cop. + export const version = '2.0.0-beta.5' diff --git a/scripts/lib/publishing.ts b/scripts/lib/publishing.ts index eafe855eb..c5944094b 100644 --- a/scripts/lib/publishing.ts +++ b/scripts/lib/publishing.ts @@ -179,7 +179,7 @@ export async function publish() { const newVersion = packageDetails.version const unscopedName = packageDetails.name.replace('@tldraw/', '') - const url = `https://registry.npmjs.org/@tldraw/${unscopedName}/-/${unscopedName}-${newVersion}.tgz` + const url = `https://registry.npmjs.org/${packageDetails.name}/-/${unscopedName}-${newVersion}.tgz` nicelog('looking for package at url: ', url) const res = await fetch(url, { method: 'HEAD',