Skip to content

Commit

Permalink
Prepare 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rnijveld committed Oct 27, 2022
1 parent 088ea80 commit a3cc2b4
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Master
Version 0.2.0
======

Major Changes
Expand Down
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 ntp-ctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntp-ctl"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion ntp-ctl/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion ntp-daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntp-daemon"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion ntp-os-clock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion ntp-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntp-proto"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion ntp-udp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntp-udp"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion test-binaries/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-binaries"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0 OR MIT"

Expand Down

0 comments on commit a3cc2b4

Please sign in to comment.