Skip to content

Commit

Permalink
Merge pull request #6 from wravery/main
Browse files Browse the repository at this point in the history
pull new received-by SMTP props
  • Loading branch information
wravery authored Sep 26, 2024
2 parents 6d42a4b + 808a4eb commit 42eeb8b
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ categories = [ "os::windows-apis" ]

[workspace.dependencies]
outlook-mapi-stub = "0.3.0"
outlook-mapi-sys = { version = "0.6.1", default-features = false }
outlook-mapi-sys = { version = "0.6.2", default-features = false }

cmake = "0.1"
proc-macro2 = "1.0"
Expand Down
5 changes: 5 additions & 0 deletions crates/mapi-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2](https://github.com/wravery/outlook-mapi-rs/compare/outlook-mapi-sys-v0.6.1...outlook-mapi-sys-v0.6.2) - 2024-09-26

### Fixed
- pull new received-by SMTP props

## [0.6.1](https://github.com/wravery/outlook-mapi-rs/compare/outlook-mapi-sys-v0.6.0...outlook-mapi-sys-v0.6.1) - 2024-09-19

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/mapi-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "outlook-mapi-sys"
version = "0.6.1"
version = "0.6.2"
description = "Bindings generated with the windows crate for the Outlook MAPI interface"

authors.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/mapi-sys/src/Microsoft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21438,6 +21438,9 @@ pub mod Office {
pub const PR_RCVD_REPRESENTING_SEARCH_KEY: u32 = 5374210u32;
pub const PR_RCVD_REPRESENTING_SID: u32 = 240582914u32;
pub const PR_RCVD_REPRESENTING_SID_AS_XML: u32 = 242745374u32;
pub const PR_RCVD_REPRESENTING_SMTP_ADDRESS: u32 = 1560805406u32;
pub const PR_RCVD_REPRESENTING_SMTP_ADDRESS_A: u32 = 1560805406u32;
pub const PR_RCVD_REPRESENTING_SMTP_ADDRESS_W: u32 = 1560805407u32;
pub const PR_READ: u32 = 241762315u32;
pub const PR_READ_RECEIPT_ENTRYID: u32 = 4587778u32;
pub const PR_READ_RECEIPT_REQUESTED: u32 = 2686987u32;
Expand All @@ -21458,6 +21461,9 @@ pub mod Office {
pub const PR_RECEIVED_BY_SEARCH_KEY: u32 = 5308674u32;
pub const PR_RECEIVED_BY_SID: u32 = 240517378u32;
pub const PR_RECEIVED_BY_SID_AS_XML: u32 = 242679838u32;
pub const PR_RECEIVED_BY_SMTP_ADDRESS: u32 = 1560739870u32;
pub const PR_RECEIVED_BY_SMTP_ADDRESS_A: u32 = 1560739870u32;
pub const PR_RECEIVED_BY_SMTP_ADDRESS_W: u32 = 1560739871u32;
pub const PR_RECEIVE_FOLDER_SETTINGS: u32 = 873791501u32;
pub const PR_RECIPIENT_CERTIFICATE: u32 = 202572034u32;
pub const PR_RECIPIENT_NUMBER: u32 = 1717698563u32;
Expand Down
5 changes: 5 additions & 0 deletions crates/mapi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.15.2](https://github.com/wravery/outlook-mapi-rs/compare/outlook-mapi-v0.15.1...outlook-mapi-v0.15.2) - 2024-09-26

### Other
- *(release)* update outlook-mapi-sys

## [0.15.1](https://github.com/wravery/outlook-mapi-rs/compare/outlook-mapi-v0.15.0...outlook-mapi-v0.15.1) - 2024-09-19

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/mapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "outlook-mapi"
version = "0.15.1"
version = "0.15.2"
description = "Rust bindings for the Outlook MAPI interface"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/update-bindings/mapi-scrubbed/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set(CMAKE_CXX_STANDARD 20)
include(FetchContent)
FetchContent_Declare(MAPIStubLibrary
GIT_REPOSITORY "https://github.com/microsoft/MAPIStubLibrary"
GIT_TAG "a96798fe9a556e69b0a528a901d45f5a692e56d7"
GIT_TAG "1d30c31ebf05ef444371520cd4268d6e1fda8a3b"
GIT_PROGRESS TRUE)
FetchContent_GetProperties(MAPIStubLibrary)

Expand Down

0 comments on commit 42eeb8b

Please sign in to comment.