Skip to content

Commit 004bee1

Browse files
committed
Bump version to 0.1.0-beta-7
1 parent d991c77 commit 004bee1

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

Cargo.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
]
1111

1212
[workspace.package]
13-
version = "0.1.0-beta-6"
13+
version = "0.1.0-beta-7"
1414
edition = "2021"
1515
license = "Apache-2.0"
1616
repository = "https://github.com/agentem-ai/izwi"
@@ -35,7 +35,11 @@ serde_json = "1.0"
3535
toml = "0.8"
3636

3737
# Model loading
38-
hf-hub = { version = "0.5", default-features = false, features = [ "rustls-tls", "tokio", "ureq"] }
38+
hf-hub = { version = "0.5", default-features = false, features = [
39+
"rustls-tls",
40+
"tokio",
41+
"ureq",
42+
] }
3943
safetensors = "0.4"
4044
tokenizers = "0.22.2"
4145

@@ -62,7 +66,12 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
6266
uuid = { version = "1.0", features = ["v4", "serde"] }
6367
bytes = "1.9"
6468
base64 = "0.22"
65-
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "blocking", "rustls-tls"] }
69+
reqwest = { version = "0.11", default-features = false, features = [
70+
"json",
71+
"stream",
72+
"blocking",
73+
"rustls-tls",
74+
] }
6675
indicatif = "0.17"
6776
dirs = "5.0"
6877
sha2 = "0.10"

crates/izwi-core/src/model/download.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ impl ModelDownloader {
257257
let response = self
258258
.http_client
259259
.get(&url)
260-
.header("User-Agent", "izwi/0.1.0-beta-6")
260+
.header("User-Agent", "izwi/0.1.0-beta-7")
261261
.send()
262262
.await
263263
.map_err(|e| Error::HfHubError(format!("Repo tree request failed: {}", e)))?;

crates/izwi-desktop/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Izwi",
4-
"version": "0.1.0-beta-6",
4+
"version": "0.1.0-beta-7",
55
"identifier": "com.agentem.izwi.desktop",
66
"build": {
77
"frontendDist": "../../ui/dist",

ui/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "izwi-ui",
33
"private": true,
4-
"version": "0.1.0-beta-6",
4+
"version": "0.1.0-beta-7",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)