Skip to content

Commit

Permalink
Merge pull request #32 from bytes-zone/release-prep-0.3.0
Browse files Browse the repository at this point in the history
release prep 0.3.0
  • Loading branch information
BrianHicks authored Dec 24, 2024
2 parents 92c760f + 251a97f commit 510b6c2
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.3.0 (Unreleased)
## 0.3.0 (2024-12-24)

- You can now copy/paste tags with the `c`/`v` keys.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions beeps-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
[package]
name = "beeps-server"
version = "0.1.0"
version = "0.3.0"
edition = "2021"

[dependencies]
axum = "0.7.9"
clap = { version = "4.5.23", features = ["derive", "env"] }
tokio = { version = "1.42.0", features = ["rt-multi-thread", "tracing"] }
tower-http = { version = "0.6.2", features = ["compression-full", "decompression-full", "limit", "sensitive-headers", "timeout", "trace"] }
tower-http = { version = "0.6.2", features = [
"compression-full",
"decompression-full",
"limit",
"sensitive-headers",
"timeout",
"trace",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }

Expand Down
1 change: 1 addition & 0 deletions beeps-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ use tracing_subscriber::{fmt, layer::SubscriberExt, util::SubscriberInitExt, Env

/// Configuration for the server
#[derive(Debug, Parser)]
#[clap(version)]
struct Config {
/// On what interface and port to listen
#[clap(long, env, default_value = "127.0.0.1:3000")]
Expand Down
2 changes: 1 addition & 1 deletion beeps/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "beeps"
version = "0.1.0"
version = "0.3.0"
edition = "2021"

[lints]
Expand Down
1 change: 1 addition & 0 deletions beeps/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use std::path::PathBuf;

/// A TUI for collecting and tagging pings
#[derive(Parser)]
#[clap(version)]
pub struct Config {
/// Where should we store data?
#[clap(long)]
Expand Down

0 comments on commit 510b6c2

Please sign in to comment.