Skip to content

Commit 0779b8f

Browse files
committed
chore: update version to 0.12.2
1 parent 7258c73 commit 0779b8f

File tree

14 files changed

+50
-50
lines changed

14 files changed

+50
-50
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.13.0-dev"
14+
version = "0.12.2"
1515
authors = ["FujiApple <fujiapple852@gmail.com>"]
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.13.0-dev", path = "crates/trippy-tui" }
28-
trippy-core = { version = "0.13.0-dev", path = "crates/trippy-core" }
29-
trippy-privilege = { version = "0.13.0-dev", path = "crates/trippy-privilege" }
30-
trippy-dns = { version = "0.13.0-dev", path = "crates/trippy-dns" }
31-
trippy-packet = { version = "0.13.0-dev", path = "crates/trippy-packet" }
27+
trippy-tui = { version = "0.12.2", path = "crates/trippy-tui" }
28+
trippy-core = { version = "0.12.2", path = "crates/trippy-core" }
29+
trippy-privilege = { version = "0.12.2", path = "crates/trippy-privilege" }
30+
trippy-dns = { version = "0.12.2", path = "crates/trippy-dns" }
31+
trippy-packet = { version = "0.12.2", path = "crates/trippy-packet" }
3232
anyhow = "1.0.91"
3333
arrayvec = { version = "0.7.6", default-features = false }
3434
bitflags = "2.6.0"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<br>
55
<a href="https://github.com/fujiapple852/trippy/actions/workflows/ci.yml">
66
<img src="https://github.com/fujiapple852/trippy/workflows/CI/badge.svg"></a>
7-
<a href="https://crates.io/crates/trippy/0.12.1">
7+
<a href="https://crates.io/crates/trippy/0.12.2">
88
<img src="https://img.shields.io/crates/v/trippy.svg"></a>
99
<a href="https://repology.org/project/trippy/versions">
1010
<img src="https://repology.org/badge/tiny-repos/trippy.svg"></a>
@@ -41,7 +41,7 @@ cargo install trippy --locked
4141

4242
### Cargo
4343

44-
[![Crates.io](https://img.shields.io/crates/v/trippy)](https://crates.io/crates/trippy/0.12.1)
44+
[![Crates.io](https://img.shields.io/crates/v/trippy)](https://crates.io/crates/trippy/0.12.2)
4545

4646
```shell
4747
cargo install trippy --locked
@@ -61,7 +61,7 @@ apt install trippy
6161
6262
### PPA (Ubuntu)
6363

64-
[![Ubuntu PPA](https://img.shields.io/badge/Ubuntu%20PPA-0.12.1-brightgreen)](https://launchpad.net/~fujiapple/+archive/ubuntu/trippy/+packages)
64+
[![Ubuntu PPA](https://img.shields.io/badge/Ubuntu%20PPA-0.12.2-brightgreen)](https://launchpad.net/~fujiapple/+archive/ubuntu/trippy/+packages)
6565

6666
```shell
6767
add-apt-repository ppa:fujiapple/trippy
@@ -90,7 +90,7 @@ brew install trippy
9090

9191
### WinGet (Windows)
9292

93-
[![winget package](https://img.shields.io/badge/WinGet-0.12.1-brightgreen)](https://github.com/microsoft/winget-pkgs/tree/master/manifests/f/FujiApple/Trippy/0.12.1)
93+
[![winget package](https://img.shields.io/badge/WinGet-0.12.2-brightgreen)](https://github.com/microsoft/winget-pkgs/tree/master/manifests/f/FujiApple/Trippy/0.12.2)
9494

9595
```shell
9696
winget install trippy

RELEASES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ This release introduces the Trippy public API which can be used to build custom
501501
The full set of libraries exposed is:
502502

503503
| Crate | Description |
504-
|------------------------------------------------------|------------------------------------------------------|
504+
| ---------------------------------------------------- | ---------------------------------------------------- |
505505
| [trippy](https://docs.rs/trippy) | Common entrypoint crate |
506506
| [trippy-core](https://docs.rs/trippy-core) | The core Trippy tracing functionality |
507507
| [trippy-packet](https://docs.rs/trippy-packet) | Packet wire formats and packet parsing functionality |

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.

docs/src/content/docs/reference/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Trippy will attempt to locate a `trippy.toml` or `.trippy.toml` configuration fi
1717
- the Windows data directory (Windows only): `%APPDATA%`
1818

1919
A template configuration file
20-
for [0.12.0](https://github.com/fujiapple852/trippy/blob/0.12.0/trippy-config-sample.toml) is available to
20+
for [0.12.2](https://github.com/fujiapple852/trippy/blob/0.12.2/trippy-config-sample.toml) is available to
2121
download, or can be generated with the following command:
2222

2323
```shell

docs/src/content/docs/reference/version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation:
1111
| Version | Release Date | Status | Release Note | Documentation |
1212
| ---------- | ------------ | ----------- | ------------------------------------------------------------------ | ---------------------------------------------------------- |
1313
| 0.13.0-dev | n/a | Development | n/a | [docs](https://github.com/fujiapple852/trippy/tree/master) |
14-
| 0.12.1 | 2024-12-21 | Current | [note](https://github.com/fujiapple852/trippy/releases/tag/0.12.1) | [docs](https://github.com/fujiapple852/trippy/tree/0.12.1) |
14+
| 0.12.2 | 2025-01-03 | Current | [note](https://github.com/fujiapple852/trippy/releases/tag/0.12.2) | [docs](https://github.com/fujiapple852/trippy/tree/0.12.2) |
1515
| 0.11.0 | 2024-08-11 | Previous | [note](https://github.com/fujiapple852/trippy/releases/tag/0.11.0) | [docs](https://github.com/fujiapple852/trippy/tree/0.11.0) |
1616
| 0.10.0 | 2024-03-31 | Previous | [note](https://github.com/fujiapple852/trippy/releases/tag/0.10.0) | [docs](https://github.com/fujiapple852/trippy/tree/0.10.0) |
1717
| 0.9.0 | 2023-11-30 | Deprecated | [note](https://github.com/fujiapple852/trippy/releases/tag/0.9.0) | [docs](https://github.com/fujiapple852/trippy/tree/0.9.0) |

0 commit comments

Comments
 (0)