Skip to content

Commit

Permalink
Bump version to 0.13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
s1341 committed Jul 22, 2024
1 parent f2487bc commit 779677c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ default-members = [
]

[workspace.package]
version = "0.13.6"
version = "0.13.7"
authors = ["Keegan Saunders <[email protected]>", "Shmarya Rubenstein <[email protected]>"]
edition = "2021"
license = "wxWindows"
Expand Down
2 changes: 1 addition & 1 deletion frida-gum-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stalker-params = ["cc"]
[build-dependencies]
bindgen = "0.69.4"
cc = { version = "1.0", optional = true }
frida-build = { path = "../frida-build", optional = true, version = "0.13.6" }
frida-build = { path = "../frida-build", optional = true, version = "0.13.7" }

[badges]
maintenance = { status = "experimental" }
2 changes: 1 addition & 1 deletion frida-gum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ stalker-params = ["frida-gum-sys/stalker-params"]

[dependencies]
cstr_core = { version = "0.2.6", default-features = false, features = ["alloc"] }
frida-gum-sys = { path = "../frida-gum-sys", version = "0.13.6" }
frida-gum-sys = { path = "../frida-gum-sys", version = "0.13.7" }
libc = { version = "0.2.153", default-features = false, optional = true }
num = { version = "0.4.1", default-features = false }
num-derive = { version = "0.4.2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion frida-gum/src/range_details.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use {
use alloc::{boxed::Box, string::String};

/// The memory protection of an unassociated page.
#[derive(Clone, FromPrimitive)]
#[derive(Clone, FromPrimitive, Debug)]
#[repr(u32)]
pub enum PageProtection {
NoAccess = gum_sys::_GumPageProtection_GUM_PAGE_NO_ACCESS as u32,
Expand Down
12 changes: 12 additions & 0 deletions frida-gum/src/stalker/transformer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ impl<'a> StalkerIterator<'a> {
)
};
}

pub fn put_chaining_return(&self) {
unsafe {
frida_gum_sys::gum_stalker_iterator_put_chaining_return(self.iterator)
};
}
}

use frida_gum_sys::cs_insn;
Expand Down Expand Up @@ -102,6 +108,12 @@ impl<'a> Instruction<'a> {
};
}

pub fn put_chaining_return(&self) {
unsafe {
frida_gum_sys::gum_stalker_iterator_put_chaining_return(self.parent)
};
}

pub fn instr(&self) -> &Insn {
&self.instr
}
Expand Down
2 changes: 1 addition & 1 deletion frida-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ auto-download = ["frida-build"]

[build-dependencies]
bindgen = "0.69.4"
frida-build = { path = "../frida-build", optional = true, version = "0.13.6" }
frida-build = { path = "../frida-build", optional = true, version = "0.13.7" }

[badges]
maintenance = { status = "experimental" }
2 changes: 1 addition & 1 deletion frida/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description.workspace = true
auto-download = ["frida-sys/auto-download"]

[dependencies]
frida-sys = { path = "../frida-sys" , version = "0.13.6"}
frida-sys = { path = "../frida-sys" , version = "0.13.7"}
thiserror = "1"

[dev-dependencies]
Expand Down

0 comments on commit 779677c

Please sign in to comment.