Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
http: release radicle-httpd v0.11.0
Sebastian Martinez committed 1 year ago
commit 473f893b2b967c4d5cc32dee5f888622831f7129
parent ae17e8c
4 files changed +4 -4
modified config/default.json
@@ -1,7 +1,7 @@
{
  "nodes": {
    "fallbackPublicExplorer": "https://app.radicle.xyz/nodes/$host/$rid$path",
-
    "apiVersion": "0.1.0",
+
    "apiVersion": "1.0.0",
    "defaultHttpdPort": 443,
    "defaultLocalHttpdPort": 8080,
    "defaultHttpdHostname": "seed.radicle.garden",
modified radicle-httpd/Cargo.lock
@@ -1854,7 +1854,7 @@ dependencies = [

[[package]]
name = "radicle-httpd"
-
version = "0.10.0"
+
version = "0.11.0"
dependencies = [
 "anyhow",
 "axum",
modified radicle-httpd/Cargo.toml
@@ -3,7 +3,7 @@ name = "radicle-httpd"
description = "Radicle HTTP daemon"
homepage = "https://radicle.xyz"
license = "MIT OR Apache-2.0"
-
version = "0.10.0"
+
version = "0.11.0"
authors = ["cloudhead <cloudhead@radicle.xyz>"]
edition = "2021"
default-run = "radicle-httpd"
modified radicle-httpd/src/api.rs
@@ -36,7 +36,7 @@ use crate::Options;

pub const RADICLE_VERSION: &str = env!("RADICLE_VERSION");
// This version has to be updated on every breaking change to the radicle-httpd API.
-
pub const API_VERSION: &str = "0.1.0";
+
pub const API_VERSION: &str = "1.0.0";

/// Identifier for sessions
type SessionId = String;