File tree Expand file tree Collapse file tree 12 files changed +56
-18
lines changed
Expand file tree Collapse file tree 12 files changed +56
-18
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ members = [
1212]
1313
1414[workspace .package ]
15- version = " 142.4.1 +142.0.15 "
15+ version = " 142.5.0 +142.0.17 "
1616edition = " 2021"
1717license = " Apache-2.0 OR MIT"
1818authors = [
@@ -24,7 +24,7 @@ repository = "https://github.com/tauri-apps/cef-rs"
2424
2525[workspace .dependencies ]
2626cef = { path = " cef" }
27- cef-dll-sys = { version = " 142.4.1 " , path = " sys" }
27+ cef-dll-sys = { version = " 142.5.0 " , path = " sys" }
2828download-cef = { version = " 2.2" , path = " download-cef" }
2929
3030anyhow = " 1"
Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 142.5.0+142.0.17] ( https://github.com/tauri-apps/cef-rs/compare/cef-v142.4.1+142.0.15...cef-v142.5.0+142.0.17 ) - 2025-11-27
11+
12+ ### Other
13+
14+ - * (release)* update CEF version to 142.0.17
15+ - * (deps)* update rust crate convert_case to 0.10
16+
17+ ## [ 142.4.1+142.0.15] ( https://github.com/tauri-apps/cef-rs/compare/cef-v142.4.0+142.0.15...cef-v142.4.1+142.0.15 ) - 2025-11-22
18+
19+ ### Other
20+
21+ - release v142.4.1+142.0.15
22+
1023## [ 142.4.0+142.0.15] ( https://github.com/tauri-apps/cef-rs/compare/cef-v142.3.1+142.0.14...cef-v142.4.0+142.0.15 ) - 2025-11-21
1124
1225### Other
Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 142.5.0+142.0.17] ( https://github.com/tauri-apps/cef-rs/compare/export-cef-dir-v142.4.1+142.0.15...export-cef-dir-v142.5.0+142.0.17 ) - 2025-11-27
11+
12+ ### Other
13+
14+ - * (release)* update CEF version to 142.0.17
15+ - * (deps)* update rust crate convert_case to 0.10
16+
17+ ## [ 142.4.1+142.0.15] ( https://github.com/tauri-apps/cef-rs/compare/export-cef-dir-v142.4.0+142.0.15...export-cef-dir-v142.4.1+142.0.15 ) - 2025-11-22
18+
19+ ### Other
20+
21+ - release v142.4.1+142.0.15
22+
1023## [ 142.4.0+142.0.15] ( https://github.com/tauri-apps/cef-rs/compare/export-cef-dir-v142.3.0+142.0.14...export-cef-dir-v142.4.0+142.0.15 ) - 2025-11-21
1124
1225### Other
Original file line number Diff line number Diff line change @@ -7,16 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 142.5.0+142.0.17] ( https://github.com/tauri-apps/cef-rs/compare/cef-dll-sys-v142.4.1+142.0.15...cef-dll-sys-v142.5.0+142.0.17 ) - 2025-11-27
11+
12+ ### Other
13+
14+ - * (release)* update CEF version to 142.0.17
15+ - * (deps)* update rust crate convert_case to 0.10
16+
1017## [ 142.4.1+142.0.15] ( https://github.com/tauri-apps/cef-rs/compare/cef-dll-sys-v142.4.0+142.0.15...cef-dll-sys-v142.4.1+142.0.15 ) - 2025-11-22
1118
1219### Fixed
1320
1421- use build-time OUT_DIR variable in get_cef_dir
1522
23+ ### Other
24+
25+ - release v142.4.1+142.0.15
26+
1627## [ 142.4.0+142.0.15] ( https://github.com/tauri-apps/cef-rs/compare/cef-dll-sys-v142.3.1+142.0.14...cef-dll-sys-v142.4.0+142.0.15 ) - 2025-11-21
1728
1829### Other
1930
31+ - update bindings
2032- * (release)* update CEF version to 142.0.15
2133
2234## [ 142.3.1+142.0.14] ( https://github.com/tauri-apps/cef-rs/compare/cef-dll-sys-v142.3.0+142.0.14...cef-dll-sys-v142.3.1+142.0.14 ) - 2025-11-20
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ pub const CEF_API_VERSION_LAST: i32 = 14200;
2323pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2424pub const CEF_API_VERSION_NEXT: i32 = 999998;
2525pub const CEF_API_VERSION: i32 = 999999;
26- pub const CEF_VERSION: &[u8; 42] = b"142.0.15+g6dfdb28 +chromium-142.0.7444.176\0";
26+ pub const CEF_VERSION: &[u8; 42] = b"142.0.17+g60aac24 +chromium-142.0.7444.176\0";
2727pub const CEF_VERSION_MAJOR: i32 = 142;
2828pub const CEF_VERSION_MINOR: i32 = 0;
29- pub const CEF_VERSION_PATCH: i32 = 15 ;
29+ pub const CEF_VERSION_PATCH: i32 = 17 ;
3030pub const CHROME_VERSION_MAJOR: i32 = 142;
3131pub const CHROME_VERSION_MINOR: i32 = 0;
3232pub const CHROME_VERSION_BUILD: i32 = 7444;
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ pub const CEF_API_VERSION_LAST: i32 = 14200;
2323pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2424pub const CEF_API_VERSION_NEXT: i32 = 999998;
2525pub const CEF_API_VERSION: i32 = 999999;
26- pub const CEF_VERSION: &[u8; 42] = b"142.0.15+g6dfdb28 +chromium-142.0.7444.176\0";
26+ pub const CEF_VERSION: &[u8; 42] = b"142.0.17+g60aac24 +chromium-142.0.7444.176\0";
2727pub const CEF_VERSION_MAJOR: i32 = 142;
2828pub const CEF_VERSION_MINOR: i32 = 0;
29- pub const CEF_VERSION_PATCH: i32 = 15 ;
29+ pub const CEF_VERSION_PATCH: i32 = 17 ;
3030pub const CHROME_VERSION_MAJOR: i32 = 142;
3131pub const CHROME_VERSION_MINOR: i32 = 0;
3232pub const CHROME_VERSION_BUILD: i32 = 7444;
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ pub const CEF_API_VERSION_LAST: i32 = 14200;
2323pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2424pub const CEF_API_VERSION_NEXT: i32 = 999998;
2525pub const CEF_API_VERSION: i32 = 999999;
26- pub const CEF_VERSION: &[u8; 42] = b"142.0.15+g6dfdb28 +chromium-142.0.7444.176\0";
26+ pub const CEF_VERSION: &[u8; 42] = b"142.0.17+g60aac24 +chromium-142.0.7444.176\0";
2727pub const CEF_VERSION_MAJOR: i32 = 142;
2828pub const CEF_VERSION_MINOR: i32 = 0;
29- pub const CEF_VERSION_PATCH: i32 = 15 ;
29+ pub const CEF_VERSION_PATCH: i32 = 17 ;
3030pub const CHROME_VERSION_MAJOR: i32 = 142;
3131pub const CHROME_VERSION_MINOR: i32 = 0;
3232pub const CHROME_VERSION_BUILD: i32 = 7444;
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ pub const CEF_API_VERSION_LAST: i32 = 14200;
2323pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2424pub const CEF_API_VERSION_NEXT: i32 = 999998;
2525pub const CEF_API_VERSION: i32 = 999999;
26- pub const CEF_VERSION: &[u8; 42] = b"142.0.15+g6dfdb28 +chromium-142.0.7444.176\0";
26+ pub const CEF_VERSION: &[u8; 42] = b"142.0.17+g60aac24 +chromium-142.0.7444.176\0";
2727pub const CEF_VERSION_MAJOR: i32 = 142;
2828pub const CEF_VERSION_MINOR: i32 = 0;
29- pub const CEF_VERSION_PATCH: i32 = 15 ;
29+ pub const CEF_VERSION_PATCH: i32 = 17 ;
3030pub const CHROME_VERSION_MAJOR: i32 = 142;
3131pub const CHROME_VERSION_MINOR: i32 = 0;
3232pub const CHROME_VERSION_BUILD: i32 = 7444;
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ pub const CEF_API_VERSION_LAST: i32 = 14200;
2323pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2424pub const CEF_API_VERSION_NEXT: i32 = 999998;
2525pub const CEF_API_VERSION: i32 = 999999;
26- pub const CEF_VERSION: &[u8; 42] = b"142.0.15+g6dfdb28 +chromium-142.0.7444.176\0";
26+ pub const CEF_VERSION: &[u8; 42] = b"142.0.17+g60aac24 +chromium-142.0.7444.176\0";
2727pub const CEF_VERSION_MAJOR: i32 = 142;
2828pub const CEF_VERSION_MINOR: i32 = 0;
29- pub const CEF_VERSION_PATCH: i32 = 15 ;
29+ pub const CEF_VERSION_PATCH: i32 = 17 ;
3030pub const CHROME_VERSION_MAJOR: i32 = 142;
3131pub const CHROME_VERSION_MINOR: i32 = 0;
3232pub const CHROME_VERSION_BUILD: i32 = 7444;
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ pub const CEF_API_VERSION_LAST: i32 = 14200;
2323pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2424pub const CEF_API_VERSION_NEXT: i32 = 999998;
2525pub const CEF_API_VERSION: i32 = 999999;
26- pub const CEF_VERSION: &[u8; 42] = b"142.0.15+g6dfdb28 +chromium-142.0.7444.176\0";
26+ pub const CEF_VERSION: &[u8; 42] = b"142.0.17+g60aac24 +chromium-142.0.7444.176\0";
2727pub const CEF_VERSION_MAJOR: i32 = 142;
2828pub const CEF_VERSION_MINOR: i32 = 0;
29- pub const CEF_VERSION_PATCH: i32 = 15 ;
29+ pub const CEF_VERSION_PATCH: i32 = 17 ;
3030pub const CHROME_VERSION_MAJOR: i32 = 142;
3131pub const CHROME_VERSION_MINOR: i32 = 0;
3232pub const CHROME_VERSION_BUILD: i32 = 7444;
You can’t perform that action at this time.
0 commit comments