Skip to content

Commit a3cc2b4

Browse files
committed
Prepare 0.2.0 release
1 parent 088ea80 commit a3cc2b4

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ jobs:
1515
- linux-arm64-gnu
1616
include:
1717
- name: linux-x86-64-gnu
18-
os: ubuntu-latest
18+
os: ubuntu-20.04
1919
target: x86_64-unknown-linux-gnu
2020
cross: false
2121
features:
2222
- sentry
2323

2424
- name: linux-armv7-gnu
25-
os: ubuntu-latest
25+
os: ubuntu-20.04
2626
target: armv7-unknown-linux-gnueabihf
2727
cross: true
2828
features:
2929
- sentry
3030

3131
- name: linux-arm64-gnu
32-
os: ubuntu-latest
32+
os: ubuntu-20.04
3333
target: aarch64-unknown-linux-gnu
3434
cross: true
3535
features:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Master
1+
Version 0.2.0
22
======
33

44
Major Changes

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ntp-ctl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntp-ctl"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66

ntp-ctl/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use clap::{Parser, Subcommand};
88
use ntp_daemon::{Config, ConfigUpdate, ObservableState};
99

1010
#[derive(Parser)]
11-
#[command(version = "0.1.0", about = "Query and configure the ntpd-rs daemon")]
11+
#[command(version = "0.2.0", about = "Query and configure the ntpd-rs daemon")]
1212
#[command(arg_required_else_help(true))]
1313
struct Cli {
1414
#[command(subcommand)]

ntp-daemon/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntp-daemon"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66

ntp-os-clock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntp-os-clock"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66

ntp-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntp-proto"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66

ntp-udp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntp-udp"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66

test-binaries/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-binaries"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66

0 commit comments

Comments
 (0)