diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b1cb34f26..d0988736a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,21 +15,21 @@ jobs: - linux-arm64-gnu include: - name: linux-x86-64-gnu - os: ubuntu-latest + os: ubuntu-20.04 target: x86_64-unknown-linux-gnu cross: false features: - sentry - name: linux-armv7-gnu - os: ubuntu-latest + os: ubuntu-20.04 target: armv7-unknown-linux-gnueabihf cross: true features: - sentry - name: linux-arm64-gnu - os: ubuntu-latest + os: ubuntu-20.04 target: aarch64-unknown-linux-gnu cross: true features: diff --git a/CHANGELOG.md b/CHANGELOG.md index 174f4ed59..b216b64ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -Master +Version 0.2.0 ====== Major Changes diff --git a/Cargo.lock b/Cargo.lock index 00adac977..e786647b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -548,7 +548,7 @@ dependencies = [ [[package]] name = "ntp-ctl" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "ntp-daemon", @@ -563,7 +563,7 @@ dependencies = [ [[package]] name = "ntp-daemon" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "exitcode", @@ -586,7 +586,7 @@ dependencies = [ [[package]] name = "ntp-os-clock" -version = "0.1.0" +version = "0.2.0" dependencies = [ "libc", "ntp-proto", @@ -595,7 +595,7 @@ dependencies = [ [[package]] name = "ntp-proto" -version = "0.1.0" +version = "0.2.0" dependencies = [ "exitcode", "md-5", @@ -606,7 +606,7 @@ dependencies = [ [[package]] name = "ntp-udp" -version = "0.1.0" +version = "0.2.0" dependencies = [ "libc", "ntp-proto", @@ -1176,7 +1176,7 @@ dependencies = [ [[package]] name = "test-binaries" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "ntp-daemon", diff --git a/ntp-ctl/Cargo.toml b/ntp-ctl/Cargo.toml index 05bea4d83..b51777616 100644 --- a/ntp-ctl/Cargo.toml +++ b/ntp-ctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntp-ctl" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/ntp-ctl/src/main.rs b/ntp-ctl/src/main.rs index dceb0581a..a5ff7870d 100644 --- a/ntp-ctl/src/main.rs +++ b/ntp-ctl/src/main.rs @@ -8,7 +8,7 @@ use clap::{Parser, Subcommand}; use ntp_daemon::{Config, ConfigUpdate, ObservableState}; #[derive(Parser)] -#[command(version = "0.1.0", about = "Query and configure the ntpd-rs daemon")] +#[command(version = "0.2.0", about = "Query and configure the ntpd-rs daemon")] #[command(arg_required_else_help(true))] struct Cli { #[command(subcommand)] diff --git a/ntp-daemon/Cargo.toml b/ntp-daemon/Cargo.toml index c6018e69e..61f679571 100644 --- a/ntp-daemon/Cargo.toml +++ b/ntp-daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntp-daemon" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/ntp-os-clock/Cargo.toml b/ntp-os-clock/Cargo.toml index da2b6719d..bac11a570 100644 --- a/ntp-os-clock/Cargo.toml +++ b/ntp-os-clock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntp-os-clock" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/ntp-proto/Cargo.toml b/ntp-proto/Cargo.toml index 811f3506c..9a0f5ac42 100644 --- a/ntp-proto/Cargo.toml +++ b/ntp-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntp-proto" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/ntp-udp/Cargo.toml b/ntp-udp/Cargo.toml index ae907b5ea..e7fd167be 100644 --- a/ntp-udp/Cargo.toml +++ b/ntp-udp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntp-udp" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/test-binaries/Cargo.toml b/test-binaries/Cargo.toml index 1d346c9cd..6ddc7938b 100644 --- a/test-binaries/Cargo.toml +++ b/test-binaries/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-binaries" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR MIT"