Skip to content

Commit 720ad54

Browse files
authored
Merge pull request #300 from tauri-apps/get-latest
get latest
2 parents dc65ce6 + 6268e77 commit 720ad54

12 files changed

+46
-26
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "143.0.0+143.0.9"
15+
version = "143.1.0+143.0.10"
1616
edition = "2021"
1717
license = "Apache-2.0 OR MIT"
1818
authors = [
@@ -24,7 +24,7 @@ repository = "https://github.com/tauri-apps/cef-rs"
2424

2525
[workspace.dependencies]
2626
cef = { path = "cef" }
27-
cef-dll-sys = { version = "143.0.0", path = "sys" }
27+
cef-dll-sys = { version = "143.1.0", path = "sys" }
2828
download-cef = { version = "2.2", path = "download-cef" }
2929

3030
anyhow = "1"

cef/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [143.1.0+143.0.10](https://github.com/tauri-apps/cef-rs/compare/cef-v143.0.0+143.0.9...cef-v143.1.0+143.0.10) - 2025-12-13
11+
12+
### Other
13+
14+
- *(release)* update CEF version to 143.0.10
15+
1016
## [143.0.0+143.0.9](https://github.com/tauri-apps/cef-rs/compare/cef-v142.5.1+142.0.17...cef-v143.0.0+143.0.9) - 2025-12-11
1117

1218
### Other
1319

20+
- update bindings
1421
- *(release)* update CEF version to 143.0.9
1522

1623
## [142.5.1+142.0.17](https://github.com/tauri-apps/cef-rs/compare/cef-v142.5.0+142.0.17...cef-v142.5.1+142.0.17) - 2025-12-09

export-cef-dir/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [143.1.0+143.0.10](https://github.com/tauri-apps/cef-rs/compare/export-cef-dir-v143.0.0+143.0.9...export-cef-dir-v143.1.0+143.0.10) - 2025-12-13
11+
12+
### Other
13+
14+
- *(release)* update CEF version to 143.0.10
15+
1016
## [143.0.0+143.0.9](https://github.com/tauri-apps/cef-rs/compare/export-cef-dir-v142.5.1+142.0.17...export-cef-dir-v143.0.0+143.0.9) - 2025-12-11
1117

1218
### Other

sys/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [143.1.0+143.0.10](https://github.com/tauri-apps/cef-rs/compare/cef-dll-sys-v143.0.0+143.0.9...cef-dll-sys-v143.1.0+143.0.10) - 2025-12-13
11+
12+
### Other
13+
14+
- *(release)* update CEF version to 143.0.10
15+
1016
## [143.0.0+143.0.9](https://github.com/tauri-apps/cef-rs/compare/cef-dll-sys-v142.5.1+142.0.17...cef-dll-sys-v143.0.0+143.0.9) - 2025-12-11
1117

1218
### Other
1319

20+
- update bindings
1421
- *(release)* update CEF version to 143.0.9
1522

1623
## [142.5.1+142.0.17](https://github.com/tauri-apps/cef-rs/compare/cef-dll-sys-v142.5.0+142.0.17...cef-dll-sys-v142.5.1+142.0.17) - 2025-12-09

sys/src/bindings/aarch64_apple_darwin.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 40] = b"143.0.9+ge88e818+chromium-143.0.7499.40\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.10+g8aed01b+chromium-143.0.7499.110\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 9;
30+
pub const CEF_VERSION_PATCH: i32 = 10;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 40;
34+
pub const CHROME_VERSION_PATCH: i32 = 110;
3535
unsafe extern "C" {
3636
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
3737
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

sys/src/bindings/aarch64_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 40] = b"143.0.9+ge88e818+chromium-143.0.7499.40\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.10+g8aed01b+chromium-143.0.7499.110\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 9;
30+
pub const CEF_VERSION_PATCH: i32 = 10;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 40;
34+
pub const CHROME_VERSION_PATCH: i32 = 110;
3535
unsafe extern "C" {
3636
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3737
pub fn cef_api_hash(

sys/src/bindings/aarch64_unknown_linux_gnu.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 40] = b"143.0.9+ge88e818+chromium-143.0.7499.40\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.10+g8aed01b+chromium-143.0.7499.110\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 9;
30+
pub const CEF_VERSION_PATCH: i32 = 10;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 40;
34+
pub const CHROME_VERSION_PATCH: i32 = 110;
3535
pub type __uint16_t = ::std::os::raw::c_ushort;
3636
pub type __uint_least16_t = __uint16_t;
3737
pub type __time_t = ::std::os::raw::c_long;

sys/src/bindings/arm_unknown_linux_gnueabi.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 40] = b"143.0.9+ge88e818+chromium-143.0.7499.40\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.10+g8aed01b+chromium-143.0.7499.110\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 9;
30+
pub const CEF_VERSION_PATCH: i32 = 10;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 40;
34+
pub const CHROME_VERSION_PATCH: i32 = 110;
3535
pub type __uint16_t = ::std::os::raw::c_ushort;
3636
pub type __uint_least16_t = __uint16_t;
3737
pub type __time_t = ::std::os::raw::c_long;

sys/src/bindings/i686_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 40] = b"143.0.9+ge88e818+chromium-143.0.7499.40\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.10+g8aed01b+chromium-143.0.7499.110\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 9;
30+
pub const CEF_VERSION_PATCH: i32 = 10;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 40;
34+
pub const CHROME_VERSION_PATCH: i32 = 110;
3535
unsafe extern "C" {
3636
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3737
pub fn cef_api_hash(

sys/src/bindings/x86_64_apple_darwin.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 40] = b"143.0.9+ge88e818+chromium-143.0.7499.40\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.10+g8aed01b+chromium-143.0.7499.110\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 9;
30+
pub const CEF_VERSION_PATCH: i32 = 10;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 40;
34+
pub const CHROME_VERSION_PATCH: i32 = 110;
3535
unsafe extern "C" {
3636
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
3737
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

0 commit comments

Comments
 (0)