Skip to content

Commit

Permalink
Merge 4982f3b into 88b7e34
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Oct 24, 2021
2 parents 88b7e34 + 4982f3b commit 8fc61dd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 0.17.0 (2021/10/24)

### Breaking changes

* Updated `gimli` and `object` dependencies.

### Changed

* Use `skip_attributes` to improve performance.
[#236](https://github.com/gimli-rs/addr2line/pull/236)

--------------------------------------------------------------------------------

## 0.16.0 (2021/07/26)

### Breaking changes
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "addr2line"
version = "0.16.0"
version = "0.17.0"
description = "A cross-platform symbolication library written in Rust, using `gimli`"
documentation = "https://docs.rs/addr2line"
exclude = ["/benches/*", "/fixtures/*", ".github"]
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/gimli-rs/addr2line"
[dependencies]
gimli = { version = "0.26", default-features = false, features = ["read"] }
fallible-iterator = { version = "0.2", default-features = false, optional = true }
object = { version = "0.26", default-features = false, features = ["read"], optional = true }
object = { version = "0.27.1", default-features = false, features = ["read"], optional = true }
smallvec = { version = "1", default-features = false, optional = true }
rustc-demangle = { version = "0.1", optional = true }
cpp_demangle = { version = "0.3", default-features = false, optional = true }
Expand All @@ -28,7 +28,7 @@ compiler_builtins = { version = '0.1.2', optional = true }
memmap = "0.7"
clap = "2"
backtrace = "0.3.13"
findshlibs = "0.8"
findshlibs = "0.10"
rustc-test = "0.3"
auxiliary = { path = "tests/auxiliary" }
typed-arena = "2"
Expand Down

0 comments on commit 8fc61dd

Please sign in to comment.