Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exclude = ["crates/digstore-prover/guest", "crates/dig-client-wasm"]

[workspace.package]
edition = "2021"
version = "0.17.1"
version = "0.17.2"
license = "GPL-2.0-only"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/dig-client-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dig-client-wasm"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "GPL-2.0-only"
repository = "https://github.com/DIG-Network/digs"
Expand Down
2 changes: 1 addition & 1 deletion crates/dig-client-wasm/PUBLISHED_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,5 @@ maintaining a private copy. The vendored fallbacks can be removed once switched.

## License

GPL-2.0-only. Source: https://github.com/DIG-Network/dig-store (crate
GPL-2.0-only. Source: https://github.com/DIG-Network/digs (crate
`crates/dig-client-wasm`).
2 changes: 1 addition & 1 deletion crates/dig-client-wasm/scripts/assemble-pkg.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import { fileURLToPath } from "node:url";
import { dirname, resolve } from "node:path";

const SCOPED_NAME = "@dignetwork/dig-client";
const REPO_URL = "https://github.com/DIG-Network/dig-store";
const REPO_URL = "https://github.com/DIG-Network/digs";

const here = dirname(fileURLToPath(import.meta.url));
const root = resolve(here, "..");
Expand Down
4 changes: 2 additions & 2 deletions crates/digstore-cli/src/commands/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::context::CliContext;
use crate::error::CliError;

/// Upstream repository whose releases drive `dig-store update`.
pub const RELEASES_API: &str = "https://api.github.com/repos/DIG-Network/dig-store/releases/latest";
pub const RELEASES_API: &str = "https://api.github.com/repos/DIG-Network/digs/releases/latest";

/// GitHub requires a non-empty User-Agent on every API request.
pub const USER_AGENT: &str = concat!("digstore-cli/", env!("CARGO_PKG_VERSION"));
Expand Down Expand Up @@ -663,7 +663,7 @@ fn not_writable(target: &std::path::Path, e: &std::io::Error) -> CliError {
"cannot write {} ({e}).\n\
Manual update:\n \
1. Download the dig-store binary for your OS/arch from \
https://github.com/DIG-Network/dig-store/releases/latest\n \
https://github.com/DIG-Network/digs/releases/latest\n \
2. chmod +x ./dig-store\n \
3. (macOS) xattr -d com.apple.quarantine ./dig-store\n \
4. mv ./dig-store \"{}\" # or re-run with write permission / the installer",
Expand Down
Loading