From bfd1248e83aa2c8b8da4376d3fd6db329863dd8d Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Fri, 2 Aug 2024 09:39:44 +0200 Subject: [PATCH] Version 0.14.0 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- remoc/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6519e8b..9cbb555 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.14.0 - 2024-07-xx +## 0.14.0 - 2024-08-02 ### Added - remote trait calling (RTC): generate ReqReceiver type for handling requests from clients as messages diff --git a/Cargo.toml b/Cargo.toml index 8485edf..8db38bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.14.0-pre1" +version = "0.14.0" edition = "2021" rust-version = "1.72" diff --git a/remoc/Cargo.toml b/remoc/Cargo.toml index d1d9a09..658e5de 100644 --- a/remoc/Cargo.toml +++ b/remoc/Cargo.toml @@ -43,7 +43,7 @@ full-codecs = [ [dependencies] -remoc_macro = { version = "=0.14.0-pre1", path = "../remoc_macro", optional = true } +remoc_macro = { version = "=0.14.0", path = "../remoc_macro", optional = true } futures = "0.3" tokio = { version = "1.34", features = ["macros", "rt", "sync", "time"] }