Skip to content

Commit

Permalink
chore: update version to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiapple852 committed Dec 4, 2024
1 parent 43b74b6 commit 93135f8
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
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.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
]

[workspace.package]
version = "0.12.0-rc.1"
version = "0.12.0"
authors = ["FujiApple <[email protected]>"]
documentation = "https://github.com/fujiapple852/trippy"
homepage = "https://github.com/fujiapple852/trippy"
Expand All @@ -24,11 +24,11 @@ keywords = ["cli", "tui", "traceroute", "ping", "icmp"]
categories = ["command-line-utilities", "network-programming"]

[workspace.dependencies]
trippy-tui = { version = "0.12.0-rc.1", path = "crates/trippy-tui" }
trippy-core = { version = "0.12.0-rc.1", path = "crates/trippy-core" }
trippy-privilege = { version = "0.12.0-rc.1", path = "crates/trippy-privilege" }
trippy-dns = { version = "0.12.0-rc.1", path = "crates/trippy-dns" }
trippy-packet = { version = "0.12.0-rc.1", path = "crates/trippy-packet" }
trippy-tui = { version = "0.12.0", path = "crates/trippy-tui" }
trippy-core = { version = "0.12.0", path = "crates/trippy-core" }
trippy-privilege = { version = "0.12.0", path = "crates/trippy-privilege" }
trippy-dns = { version = "0.12.0", path = "crates/trippy-dns" }
trippy-packet = { version = "0.12.0", path = "crates/trippy-packet" }
anyhow = "1.0.91"
arrayvec = { version = "0.7.6", default-features = false }
bitflags = "2.6.0"
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ rust-version = "1.76"
publish = false

[dependencies]
trippy = { version = "0.12.0-rc.1", path = "../../crates/trippy", default-features = false, features = [ "core" ] }
trippy = { version = "0.12.0", path = "../../crates/trippy", default-features = false, features = [ "core" ] }
anyhow = "1.0.86"
2 changes: 1 addition & 1 deletion examples/traceroute/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ rust-version = "1.76"
publish = false

[dependencies]
trippy = { version = "0.12.0-rc.1", path = "../../crates/trippy", default-features = false, features = [ "core", "dns" ] }
trippy = { version = "0.12.0", path = "../../crates/trippy", default-features = false, features = [ "core", "dns" ] }
anyhow = "1.0.86"
itertools = "0.13.0"
clap = { version = "4.5.7", features = [ "derive" ] }
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: trippy
version: '0.12.0-rc.1'
version: '0.12.0'
summary: A network diagnostic tool
description: |
Trippy combines the functionality of traceroute and ping and is designed to
Expand Down
8 changes: 4 additions & 4 deletions ubuntu-ppa/README.debian
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ The provided `debian` directory targets the Ubuntu Jammy 22.04 LTS
distribution. It is possible to target other distributions simply
by editing the `debian/changelog` file and changing the version and
distribution fields:
trippy (0.11.0-1ubuntu0.1~jammy1) jammy; urgency=medium
trippy (0.11.0-1ubuntu0.1~mantis1) mantis; urgency=medium
trippy (0.11.0-1ubuntu0.1~noble1) noble; urgency=medium
trippy (0.12.0-1ubuntu0.1~jammy1) jammy; urgency=medium
trippy (0.12.0-1ubuntu0.1~mantis1) mantis; urgency=medium
trippy (0.12.0-1ubuntu0.1~noble1) noble; urgency=medium
It is preferable to use `debchange` for this, eg:
debchange --distribution noble --newversion 0.11.0-1ubuntu0.1~noble1
debchange --distribution noble --newversion 0.12.0-1ubuntu0.1~noble1

---

Expand Down
4 changes: 2 additions & 2 deletions ubuntu-ppa/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
trippy (0.11.0-ppa2~ubuntu24.04) noble; urgency=medium
trippy (0.12.0-ppa2~ubuntu24.04) noble; urgency=medium

* New upstream release

-- Fuji Apple <[email protected]> Fri, 13 Sep 2024 12:36:45 +0000
-- Fuji Apple <[email protected]> Wed, 04 Dec 2024 12:34:56 +0000
2 changes: 1 addition & 1 deletion ubuntu-ppa/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -o errexit -o pipefail -o nounset

# The Trippy version to release
VERSION="0.11.0"
VERSION="0.12.0"

# The revision number for the PPA
REVISION=1
Expand Down

0 comments on commit 93135f8

Please sign in to comment.