From 24b261798a3807eda605532e352294e90a4e2f3d Mon Sep 17 00:00:00 2001 From: moznion Date: Tue, 22 Dec 2020 09:41:08 +0900 Subject: [PATCH] Releng: v0.1.0 --- code-generator/Cargo.toml | 2 +- e2e-test/Cargo.toml | 4 ++-- examples/Cargo.toml | 4 ++-- radius/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code-generator/Cargo.toml b/code-generator/Cargo.toml index ae95c28..a64bdbd 100644 --- a/code-generator/Cargo.toml +++ b/code-generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "code-generator" -version = "0.0.3" +version = "0.1.0" edition = "2018" license-file = "../LICENSE" publish = false diff --git a/e2e-test/Cargo.toml b/e2e-test/Cargo.toml index f5f8ca6..26fbec1 100644 --- a/e2e-test/Cargo.toml +++ b/e2e-test/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "e2e-test" -version = "0.0.3" +version = "0.1.0" edition = "2018" license-file = "../LICENSE" publish = false [dependencies] -radius = { version = "0.0.3", path = "../radius" } +radius = { version = "0.1.0", path = "../radius" } tokio = { version = "0.3.5", features = ["signal", "net"] } async-trait = "0.1.42" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index fa2ec82..833b868 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "examples" -version = "0.0.3" +version = "0.1.0" publish = false edition = "2018" license-file = "../LICENSE" repository = "https://github.com/moznion/radius-rs" [dev-dependencies] -radius = { version = "0.0.3", path = "../radius" } +radius = { version = "0.1.0", path = "../radius" } log = "0.4.11" env_logger = "0.8.2" tokio = { version = "0.3.4", features = ["signal", "net"] } diff --git a/radius/Cargo.toml b/radius/Cargo.toml index 80549fb..dc19d00 100644 --- a/radius/Cargo.toml +++ b/radius/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "radius" -version = "0.0.3" +version = "0.1.0" authors = ["moznion "] edition = "2018" description = "An async/await native implementation of the RADIUS server and client for Rust."