Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit f2a2195

Browse files
committed
Prepare for v0.4 release
1 parent 75bb59f commit f2a2195

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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+
118
# 0.3.0 (2020-04-03)
219

320
### Changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "com"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Microsoft Corp."]
55
description = """
66
Utilities for implementing COM Client and Servers
@@ -13,7 +13,7 @@ license = "MIT"
1313
readme = "./README.md"
1414

1515
[dependencies]
16-
com_macros = { version = "0.3", path = "macros" }
16+
com_macros = { version = "0.4", path = "macros" }
1717

1818
[features]
1919
default = ["std"]

macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "com_macros"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Microsoft Corp."]
55
edition = "2018"
66
description = """
@@ -17,4 +17,4 @@ proc-macro = true
1717
[dependencies]
1818
syn = { version = "1.0", features = ["full"] }
1919
proc-macro2 = "1.0"
20-
com_macros_support = { version = "0.3", path = "support" }
20+
com_macros_support = { version = "0.4", path = "support" }

macros/support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "com_macros_support"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Microsoft Corp."]
55
edition = "2018"
66
description = """

0 commit comments

Comments
 (0)