From fca6cdeed5382fc437a6dea23fc5e427f67f4a39 Mon Sep 17 00:00:00 2001 From: Adam Lock Date: Tue, 12 Apr 2022 22:54:50 +0100 Subject: [PATCH] Update changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 632a8a7b9..b2b5a36a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog ## 0.10 -- OPC UA for Rust has changed to a single crate. What this means is that whereas previously you pulled multiple crates depending on whether you needed a client, server or both that now you only pull `opcua-rs`. This crate uses features to determine what you need from it. Aside from simplifying crates it also improves general build times and disk usage. -- Focus on asynchronous behaviour, especially in server's message processing but also in client. +- Starting from 0.10, OPC UA for Rust is a single crate with features to enable client, server and some other optional extras. What this means is + that `opcua_server::` becomes `opcua::server`, `opcua_client` becomes `opcua::client` and so on. Now you only reference `opcua` from your `Cargo.toml`. ## 0.9 - Multiple chunk support in client and server, sending and receiving.