Skip to content

Commit 79b8ed3

Browse files
committed
release: 0.2.5
1 parent 2c3a166 commit 79b8ed3

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ All notable changes to this project will be documented in this file.
1616

1717
---
1818

19+
# [0.2.5] Nov 30 2024
20+
21+
### Added
22+
- debugger: added support for rustc 1.83
23+
24+
---
25+
1926
# [0.2.4] Oct 20 2024
2027

2128
### Added

Cargo.lock

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

Cargo.toml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bugstalker"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Derevtsov Konstantin <[email protected]>"]
@@ -19,7 +19,13 @@ path = "src/main.rs"
1919
name = "bs"
2020

2121
[dependencies]
22-
nix = { version = "0.27.1", features = ["process", "signal", "uio", "personality", "ptrace"] }
22+
nix = { version = "0.27.1", features = [
23+
"process",
24+
"signal",
25+
"uio",
26+
"personality",
27+
"ptrace",
28+
] }
2329
once_cell = "1.13.1"
2430
anyhow = "1.0"
2531
rustyline = "14.0.0"
@@ -54,8 +60,15 @@ trie-rs = "0.2.0"
5460
regex = "1.8.4"
5561
walkdir = "2.3.3"
5662
timeout-readwrite = "0.3.3"
57-
tuirealm = { version = "1.9.1", default-features = false, features = ["ratatui", "derive", "crossterm"] }
58-
tui-realm-stdlib = { version = "1.3.2", default-features = false, features = ["ratatui", "crossterm"] }
63+
tuirealm = { version = "1.9.1", default-features = false, features = [
64+
"ratatui",
65+
"derive",
66+
"crossterm",
67+
] }
68+
tui-realm-stdlib = { version = "1.3.2", default-features = false, features = [
69+
"ratatui",
70+
"crossterm",
71+
] }
5972
syntect = "5.2.0"
6073
unicode-width = "0.1.11"
6174
# WAITFORFIX: https://github.com/veeso/tui-realm-treeview/pull/9

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
- 1.80
4242
- 1.81
4343
- 1.82
44+
- 1.83
4445

4546
---
4647

0 commit comments

Comments
 (0)