Skip to content

Commit 93135f8

Browse files
committed
chore: update version to 0.12.0
1 parent 43b74b6 commit 93135f8

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

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.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111
]
1212

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

2626
[workspace.dependencies]
27-
trippy-tui = { version = "0.12.0-rc.1", path = "crates/trippy-tui" }
28-
trippy-core = { version = "0.12.0-rc.1", path = "crates/trippy-core" }
29-
trippy-privilege = { version = "0.12.0-rc.1", path = "crates/trippy-privilege" }
30-
trippy-dns = { version = "0.12.0-rc.1", path = "crates/trippy-dns" }
31-
trippy-packet = { version = "0.12.0-rc.1", path = "crates/trippy-packet" }
27+
trippy-tui = { version = "0.12.0", path = "crates/trippy-tui" }
28+
trippy-core = { version = "0.12.0", path = "crates/trippy-core" }
29+
trippy-privilege = { version = "0.12.0", path = "crates/trippy-privilege" }
30+
trippy-dns = { version = "0.12.0", path = "crates/trippy-dns" }
31+
trippy-packet = { version = "0.12.0", path = "crates/trippy-packet" }
3232
anyhow = "1.0.91"
3333
arrayvec = { version = "0.7.6", default-features = false }
3434
bitflags = "2.6.0"

crates/trippy-tui/tests/resources/snapshots/trippy_tui__print__tests__output@generate_man_page.snap

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

examples/hello-world/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ rust-version = "1.76"
77
publish = false
88

99
[dependencies]
10-
trippy = { version = "0.12.0-rc.1", path = "../../crates/trippy", default-features = false, features = [ "core" ] }
10+
trippy = { version = "0.12.0", path = "../../crates/trippy", default-features = false, features = [ "core" ] }
1111
anyhow = "1.0.86"

examples/traceroute/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rust-version = "1.76"
77
publish = false
88

99
[dependencies]
10-
trippy = { version = "0.12.0-rc.1", path = "../../crates/trippy", default-features = false, features = [ "core", "dns" ] }
10+
trippy = { version = "0.12.0", path = "../../crates/trippy", default-features = false, features = [ "core", "dns" ] }
1111
anyhow = "1.0.86"
1212
itertools = "0.13.0"
1313
clap = { version = "4.5.7", features = [ "derive" ] }

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: trippy
2-
version: '0.12.0-rc.1'
2+
version: '0.12.0'
33
summary: A network diagnostic tool
44
description: |
55
Trippy combines the functionality of traceroute and ping and is designed to

ubuntu-ppa/README.debian

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ The provided `debian` directory targets the Ubuntu Jammy 22.04 LTS
3939
distribution. It is possible to target other distributions simply
4040
by editing the `debian/changelog` file and changing the version and
4141
distribution fields:
42-
trippy (0.11.0-1ubuntu0.1~jammy1) jammy; urgency=medium
43-
trippy (0.11.0-1ubuntu0.1~mantis1) mantis; urgency=medium
44-
trippy (0.11.0-1ubuntu0.1~noble1) noble; urgency=medium
42+
trippy (0.12.0-1ubuntu0.1~jammy1) jammy; urgency=medium
43+
trippy (0.12.0-1ubuntu0.1~mantis1) mantis; urgency=medium
44+
trippy (0.12.0-1ubuntu0.1~noble1) noble; urgency=medium
4545
It is preferable to use `debchange` for this, eg:
46-
debchange --distribution noble --newversion 0.11.0-1ubuntu0.1~noble1
46+
debchange --distribution noble --newversion 0.12.0-1ubuntu0.1~noble1
4747

4848
---
4949

ubuntu-ppa/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
trippy (0.11.0-ppa2~ubuntu24.04) noble; urgency=medium
1+
trippy (0.12.0-ppa2~ubuntu24.04) noble; urgency=medium
22

33
* New upstream release
44

5-
-- Fuji Apple <[email protected]> Fri, 13 Sep 2024 12:36:45 +0000
5+
-- Fuji Apple <[email protected]> Wed, 04 Dec 2024 12:34:56 +0000

ubuntu-ppa/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -o errexit -o pipefail -o nounset
44

55
# The Trippy version to release
6-
VERSION="0.11.0"
6+
VERSION="0.12.0"
77

88
# The revision number for the PPA
99
REVISION=1

0 commit comments

Comments
 (0)