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

Prepare for 0.3 #173

Merged
merged 2 commits into from
Oct 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.3.0 (2020-04-03)

### Changed

The public API for this crate has changed considerably since the previous version. Please take a look at the README and docs folder for information on how to use this crate.

# 0.2.0 (2020-04-03)

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "com"
version = "0.2.0"
version = "0.3.0"
authors = ["Microsoft Corp."]
description = """
Utilities for implementing COM Client and Servers
Expand All @@ -13,7 +13,7 @@ license = "MIT"
readme = "./README.md"

[dependencies]
com_macros = { version = "0.2", path = "macros" }
com_macros = { version = "0.3", path = "macros" }

[features]
production = []
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "com_macros"
version = "0.2.0"
version = "0.3.0"
authors = ["Microsoft Corp."]
edition = "2018"
description = """
Expand All @@ -17,4 +17,4 @@ proc-macro = true
[dependencies]
syn = { version = "1.0", features = ["full"] }
proc-macro2 = "1.0"
com_macros_support = { version = "0.2", path = "support" }
com_macros_support = { version = "0.3", path = "support" }
2 changes: 1 addition & 1 deletion macros/support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "com_macros_support"
version = "0.2.0"
version = "0.3.0"
authors = ["Microsoft Corp."]
edition = "2018"
description = """
Expand Down