diff --git a/Cargo.lock b/Cargo.lock index cd247cc..3388824 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -200,8 +200,8 @@ dependencies = [ [[package]] name = "codeowners" -version = "0.3.2" -source = "git+https://github.com/rubyatscale/codeowners-rs.git?tag=v0.3.2#49629b131eb788916ff5e6722719513026260480" +version = "0.3.3" +source = "git+https://github.com/rubyatscale/codeowners-rs.git?tag=v0.3.3#437a527fe02b620e77723cc4e3090bdb0a42bdb3" dependencies = [ "clap", "clap_derive", @@ -220,6 +220,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", + "similar", "tempfile", "tracing", "tracing-subscriber", @@ -848,6 +849,12 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "similar" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" + [[package]] name = "smallvec" version = "1.15.1" diff --git a/ext/code_ownership/Cargo.toml b/ext/code_ownership/Cargo.toml index d9eff24..3f29bef 100644 --- a/ext/code_ownership/Cargo.toml +++ b/ext/code_ownership/Cargo.toml @@ -17,7 +17,7 @@ rb-sys = { version = "0.9.111", features = [ magnus = { version = "0.8" } serde = { version = "1.0.219", features = ["derive"] } serde_magnus = "0.10" -codeowners = { git = "https://github.com/rubyatscale/codeowners-rs.git", tag = "v0.3.2" } +codeowners = { git = "https://github.com/rubyatscale/codeowners-rs.git", tag = "v0.3.3" } [dev-dependencies] rb-sys = { version = "0.9.117", features = [ diff --git a/lib/code_ownership/code_ownership.bundle b/lib/code_ownership/code_ownership.bundle index 6eac029..1b42d3e 100755 Binary files a/lib/code_ownership/code_ownership.bundle and b/lib/code_ownership/code_ownership.bundle differ diff --git a/lib/code_ownership/version.rb b/lib/code_ownership/version.rb index b1ba936..9801eec 100644 --- a/lib/code_ownership/version.rb +++ b/lib/code_ownership/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module CodeOwnership - VERSION = '2.1.2' + VERSION = '2.1.3' end