Skip to content

Commit

Permalink
Fix for issue #59.
Browse files Browse the repository at this point in the history
  • Loading branch information
anderejd committed Jun 12, 2019
1 parent 538a083 commit 3b5d148
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 19 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ Roadmap
Changelog
---------

### 0.7.2
- Updated dependencies to fix [#59].

### 0.7.1
- Bugfix, related to attributes, in [geiger] [#57].
- Updated all dependencies.
Expand Down Expand Up @@ -149,5 +152,6 @@ Changelog
[#46]: https://github.com/anderejd/cargo-geiger/issues/46
[#52]: https://github.com/anderejd/cargo-geiger/issues/52
[#57]: https://github.com/anderejd/cargo-geiger/issues/57
[#59]: https://github.com/anderejd/cargo-geiger/issues/59
[geiger]: https://crates.io/crates/geiger

6 changes: 3 additions & 3 deletions cargo-geiger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0/MIT"
name = "cargo-geiger"
readme = "README.md"
repository = "https://github.com/anderejd/cargo-geiger"
version = "0.7.1"
version = "0.7.2"

[badges]
maintenance = { status = "experimental" }
Expand All @@ -21,5 +21,5 @@ env_logger = "0.6.1"
failure = "0.1.5"
geiger = { path = "../geiger", version = "0.3.1" }
petgraph = "0.4.13"
structopt = "0.2.17"
walkdir = "2.2.7"
structopt = "0.2.16"
walkdir = "2.2.8"
6 changes: 3 additions & 3 deletions geiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "geiger"
description = "Some library parts of cargo-geiger, decoupled from cargo."
version = "0.3.1"
version = "0.3.2"
edition = "2018"
authors = ["anderejd <[email protected]>"]
repository = "https://github.com/anderejd/cargo-geiger"
Expand All @@ -14,6 +14,6 @@ license = "Apache-2.0/MIT"
maintenance = { status = "experimental" }

[dependencies]
syn = { version = "0.15.34", features = ["parsing", "printing", "clone-impls", "full", "extra-traits", "visit"] }
walkdir = "2.2.7"
syn = { version = "0.15.35", features = ["parsing", "printing", "clone-impls", "full", "extra-traits", "visit"] }
walkdir = "2.2.8"
proc-macro2 = "0.4.30"
3 changes: 3 additions & 0 deletions geiger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ For more details please see the `README.md` in [cargo-geiger].
Changelog
---------

### 0.3.2
- Updated dependencies.

### 0.3.1
- Bugfix for attributes [#57].

Expand Down

0 comments on commit 3b5d148

Please sign in to comment.