From 9c90e0eece162f36624ff0435e883a01b427f728 Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Wed, 3 Apr 2024 21:00:04 +0200 Subject: [PATCH] Version 0.13.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- remoc/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c4beeb..2e404c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.13.0 - 2024-04-03 +### Added +- chmux: forward channel closing +### Changed +- make forward a function of Receiver + ## 0.12.0 - 2024-04-03 ### Added - chmux: allow specification of custom id (u32) when connecting a new channel diff --git a/Cargo.toml b/Cargo.toml index 550fda8..ecef0f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.12.0" +version = "0.13.0" edition = "2021" rust-version = "1.72" diff --git a/remoc/Cargo.toml b/remoc/Cargo.toml index 0c67fce..7c3a21a 100644 --- a/remoc/Cargo.toml +++ b/remoc/Cargo.toml @@ -40,7 +40,7 @@ full-codecs = [ [dependencies] -remoc_macro = { version = "=0.12.0", path = "../remoc_macro", optional = true } +remoc_macro = { version = "=0.13.0", path = "../remoc_macro", optional = true } futures = "0.3" tokio = { version = "1.32", features = ["macros", "rt", "sync", "time"] }