Skip to content

Commit 075dac3

Browse files
authored
Drop webview prefix from tag (#45)
* Add webview prefix to release URL * Bump to 0.0.8 (0.1.7)
1 parent 1095783 commit 075dac3

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.0.8 (binary 0.1.7) -- 2024-09-23
4+
5+
NOTE: The binary version was bumped this release, but it doesn't actually have changes.
6+
This is just me forcing a new release to be published.
7+
8+
- Fixed the release URL to ensure the download comes from the correct place
9+
310
## 0.0.7 (binary 0.1.6) -- 2024-09-23
411

512
- Added this changelog

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deno-webview"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
edition = "2021"
55

66
[profile.release]

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@justbe/webview",
33
"exports": "./src/lib.ts",
4-
"version": "0.0.7",
4+
"version": "0.0.8",
55
"tasks": {
66
"dev": "deno run --watch main.ts",
77
"gen": "deno task gen:rust && deno task gen:deno",

src/lib.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export type { WebViewOptions } from "./schemas.ts";
3838

3939
// Should match the cargo package version
4040
/** The version of the webview binary that's expected */
41-
export const BIN_VERSION = "0.1.6";
41+
export const BIN_VERSION = "0.1.7";
4242

4343
type JSON =
4444
| string
@@ -140,7 +140,7 @@ async function getWebViewBin(options: WebViewOptions) {
140140

141141
// If not in cache, download it
142142
let url =
143-
`https://github.com/zephraph/webview/releases/download/v${BIN_VERSION}/deno-webview`;
143+
`https://github.com/zephraph/webview/releases/download/webview-v${BIN_VERSION}/deno-webview`;
144144
switch (Deno.build.os) {
145145
case "darwin": {
146146
url += "-mac" + flags;

0 commit comments

Comments
 (0)