This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +22
-5
lines changed Expand file tree Collapse file tree 4 files changed +22
-5
lines changed Original file line number Diff line number Diff line change
1
+ # 0.4.0 (2021-01-27)
2
+
3
+ ### Fixes
4
+
5
+ - Clippy warnings have been fixed [ #201 ] ( https://github.com/microsoft/com-rs/pull/201 )
6
+ - A few things which were not properly being converted to their ABI representation now are [ #191 ] ( https://github.com/microsoft/com-rs/pull/191 )
7
+ - Incorrect CLSID Registry keys [ #190 ] ( https://github.com/microsoft/com-rs/pull/190 )
8
+ - Handle COM classes with multiple fields [ #188 ] ( https://github.com/microsoft/com-rs/pull/188 )
9
+
10
+ ### Added
11
+
12
+ - Support for ` #[no_std] ` environments [ #199 ] ( https://github.com/microsoft/com-rs/pull/199 )
13
+
14
+ ### Changed
15
+
16
+ - The ABI for COM functions is now "system" instead of hard-coding "stdcall" [ #203 ] ( https://github.com/microsoft/com-rs/pull/203 )
17
+
1
18
# 0.3.0 (2020-04-03)
2
19
3
20
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " com"
3
- version = " 0.3 .0"
3
+ version = " 0.4 .0"
4
4
authors = [" Microsoft Corp." ]
5
5
description = """
6
6
Utilities for implementing COM Client and Servers
@@ -13,7 +13,7 @@ license = "MIT"
13
13
readme = " ./README.md"
14
14
15
15
[dependencies ]
16
- com_macros = { version = " 0.3 " , path = " macros" }
16
+ com_macros = { version = " 0.4 " , path = " macros" }
17
17
18
18
[features ]
19
19
default = [" std" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " com_macros"
3
- version = " 0.3 .0"
3
+ version = " 0.4 .0"
4
4
authors = [" Microsoft Corp." ]
5
5
edition = " 2018"
6
6
description = """
@@ -17,4 +17,4 @@ proc-macro = true
17
17
[dependencies ]
18
18
syn = { version = " 1.0" , features = [" full" ] }
19
19
proc-macro2 = " 1.0"
20
- com_macros_support = { version = " 0.3 " , path = " support" }
20
+ com_macros_support = { version = " 0.4 " , path = " support" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " com_macros_support"
3
- version = " 0.3 .0"
3
+ version = " 0.4 .0"
4
4
authors = [" Microsoft Corp." ]
5
5
edition = " 2018"
6
6
description = """
You can’t perform that action at this time.
0 commit comments