mirror of
https://github.com/threefoldtech/mycelium.git
synced 2026-03-29 07:39:51 +00:00
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.5.3] - 2024-06-07
|
||||
|
||||
### Added
|
||||
|
||||
- On Linux and macOS, a more descriptive error is printed when setting up the tun
|
||||
@@ -465,4 +467,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
[0.5.0]: https://github.com/threefoldtech/mycelium/compare/v0.4.5...v0.5.0
|
||||
[0.5.1]: https://github.com/threefoldtech/mycelium/compare/v0.5.0...v0.5.1
|
||||
[0.5.2]: https://github.com/threefoldtech/mycelium/compare/v0.5.1...v0.5.2
|
||||
[unreleased]: https://github.com/threefoldtech/mycelium/compare/v0.5.2...HEAD
|
||||
[0.5.3]: https://github.com/threefoldtech/mycelium/compare/v0.5.2...v0.5.3
|
||||
[unreleased]: https://github.com/threefoldtech/mycelium/compare/v0.5.3...HEAD
|
||||
|
||||
8
Cargo.lock
generated
8
Cargo.lock
generated
@@ -1237,7 +1237,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"aes-gcm",
|
||||
"blake3",
|
||||
@@ -1272,7 +1272,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-api"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"base64 0.22.1",
|
||||
@@ -1286,7 +1286,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-cli"
|
||||
version = "0.1.0"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"base64 0.22.1",
|
||||
"byte-unit",
|
||||
@@ -1303,7 +1303,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-metrics"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"mycelium",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "mycelium-api"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
edition = "2021"
|
||||
license-file = "../LICENSE"
|
||||
readme = "../README.md"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "mycelium-cli"
|
||||
version = "0.1.0"
|
||||
version = "0.5.3"
|
||||
edition = "2021"
|
||||
license-file = "../LICENSE"
|
||||
readme = "./README.md"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "mycelium-metrics"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
edition = "2021"
|
||||
license-file = "../LICENSE"
|
||||
readme = "../README.md"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "mycelium"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
edition = "2021"
|
||||
license-file = "../LICENSE"
|
||||
readme = "../README.md"
|
||||
|
||||
10
myceliumd-private/Cargo.lock
generated
10
myceliumd-private/Cargo.lock
generated
@@ -1168,7 +1168,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"aes-gcm",
|
||||
"blake3",
|
||||
@@ -1203,7 +1203,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-api"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"base64",
|
||||
@@ -1216,7 +1216,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-cli"
|
||||
version = "0.1.0"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"byte-unit",
|
||||
@@ -1233,7 +1233,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-metrics"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"mycelium",
|
||||
@@ -1244,7 +1244,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "myceliumd-private"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"clap",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "myceliumd-private"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
edition = "2021"
|
||||
license-file = "../LICENSE"
|
||||
readme = "./README.md"
|
||||
|
||||
10
myceliumd/Cargo.lock
generated
10
myceliumd/Cargo.lock
generated
@@ -1153,7 +1153,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"aes-gcm",
|
||||
"blake3",
|
||||
@@ -1186,7 +1186,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-api"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"base64",
|
||||
@@ -1199,7 +1199,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-cli"
|
||||
version = "0.1.0"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"byte-unit",
|
||||
@@ -1216,7 +1216,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mycelium-metrics"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"mycelium",
|
||||
@@ -1227,7 +1227,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "myceliumd"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"byte-unit",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "myceliumd"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
edition = "2021"
|
||||
license-file = "../LICENSE"
|
||||
readme = "./README.md"
|
||||
|
||||
Reference in New Issue
Block a user