Skip to content

Commit

Permalink
chore(release): 0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugal31 committed Feb 16, 2024
1 parent d8c9351 commit 6cbeab8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.26.0](https://github.com/Hugal31/yara-rust/compare/v0.25.0...v0.26.0) (2024-02-16)

### Features

* update yara dependency to v4.5.0
([a28a6d8](https://github.com/Hugal31/yara-rust/commit/a28a6d88772b8d94296e42221c3cc591f2fc8447))

## [0.25.0](https://github.com/Hugal31/yara-rust/compare/v0.24.0...v0.25.0) (2024-02-06)

### Features
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["yara-sys"]

[package]
name = "yara"
version = "0.25.0"
version = "0.26.0"
authors = ["Hugo Laloge <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Rust bindings for VirusTotal/yara"
Expand Down Expand Up @@ -43,7 +43,7 @@ tempfile = "3.9"

[dependencies.yara-sys]
path = "yara-sys"
version = "0.24.0"
version = "0.25.0"
default-features = false

[package.metadata.docs.rs]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fn main() {

## Features

* Support from Yara v4.1.
* Support from Yara v4.2.
* Compile rules from strings or files.
* Save and load compiled rules.
* Scan byte arrays (`&[u8]`) or files.
Expand All @@ -55,7 +55,7 @@ and how to link to your Yara crate.
- [ ] Accept `AsRef<Path>` instead of `&str` on multiple functions.
- [x] Implement the scanner API.
- [x] Add process scanning.
- [ ] Report the warnings to the user.
- [x] Report the warnings to the user.

## License

Expand Down
2 changes: 1 addition & 1 deletion yara-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yara-sys"
version = "0.24.0"
version = "0.25.0"
authors = ["Hugo Laloge <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Native bindings to the libyara library"
Expand Down
4 changes: 4 additions & 0 deletions yara-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,10 @@ mod bindings {
.allowlist_var("YARA_ERROR_LEVEL_.*")
.allowlist_var("SCAN_FLAGS_.*")
.allowlist_var("YR_CONFIG_.*")
.allowlist_var("_YR_CONFIG_.*")
.allowlist_var("_YR_CONFIG_NAME")
.allowlist_var("YR_CONFIG_NAME")
.allowlist_var("YR_CONFIG_STACK_SIZE")
.allowlist_var("YR_UNDEFINED")
.allowlist_function("yr_set_configuration_uint32")
.allowlist_function("yr_set_configuration_uint64")
Expand Down

0 comments on commit 6cbeab8

Please sign in to comment.