Skip to content

Commit

Permalink
release: 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
godzie44 committed Nov 30, 2024
1 parent 2c3a166 commit 79b8ed3
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ All notable changes to this project will be documented in this file.

---

# [0.2.5] Nov 30 2024

### Added
- debugger: added support for rustc 1.83

---

# [0.2.4] Oct 20 2024

### Added
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.

21 changes: 17 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bugstalker"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
license = "MIT"
authors = ["Derevtsov Konstantin <[email protected]>"]
Expand All @@ -19,7 +19,13 @@ path = "src/main.rs"
name = "bs"

[dependencies]
nix = { version = "0.27.1", features = ["process", "signal", "uio", "personality", "ptrace"] }
nix = { version = "0.27.1", features = [
"process",
"signal",
"uio",
"personality",
"ptrace",
] }
once_cell = "1.13.1"
anyhow = "1.0"
rustyline = "14.0.0"
Expand Down Expand Up @@ -54,8 +60,15 @@ trie-rs = "0.2.0"
regex = "1.8.4"
walkdir = "2.3.3"
timeout-readwrite = "0.3.3"
tuirealm = { version = "1.9.1", default-features = false, features = ["ratatui", "derive", "crossterm"] }
tui-realm-stdlib = { version = "1.3.2", default-features = false, features = ["ratatui", "crossterm"] }
tuirealm = { version = "1.9.1", default-features = false, features = [
"ratatui",
"derive",
"crossterm",
] }
tui-realm-stdlib = { version = "1.3.2", default-features = false, features = [
"ratatui",
"crossterm",
] }
syntect = "5.2.0"
unicode-width = "0.1.11"
# WAITFORFIX: https://github.com/veeso/tui-realm-treeview/pull/9
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
- 1.80
- 1.81
- 1.82
- 1.83

---

Expand Down

0 comments on commit 79b8ed3

Please sign in to comment.