From 79e332aba6f56d192b2b0247a1f1a96675e69c22 Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Fri, 22 Mar 2024 16:51:21 +0100 Subject: [PATCH] Version 0.11.7 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- remoc/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d6741b..5dbfa44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to Remoc will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.11.7 - 2024-03-22 +### Added +- remote trait calling (RTC): default method in remote traits +- remote trait calling (RTC): allow specification of supertraits in remote traits + ## 0.11.6 - 2024-03-13 ### Added - broadcast channel: method on sender to subscribe with specific maximum item size diff --git a/Cargo.toml b/Cargo.toml index e2b138f..f830232 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.11.6" +version = "0.11.7" edition = "2021" rust-version = "1.72" diff --git a/remoc/Cargo.toml b/remoc/Cargo.toml index 99b6461..28c2976 100644 --- a/remoc/Cargo.toml +++ b/remoc/Cargo.toml @@ -40,7 +40,7 @@ full-codecs = [ [dependencies] -remoc_macro = { version = "=0.11.6", path = "../remoc_macro", optional = true } +remoc_macro = { version = "=0.11.7", path = "../remoc_macro", optional = true } futures = "0.3" tokio = { version = "1.32", features = ["macros", "rt", "sync", "time"] }