From fbc3ce79cbcae16eda5749c666a23c1026f34f6b Mon Sep 17 00:00:00 2001 From: "flowzone-app[bot]" <124931076+flowzone-app[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 22:51:19 +0000 Subject: [PATCH] v0.6.0 --- .versionbot/CHANGELOG.yml | 14 ++++++++++++++ CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index e805f85..feb6101 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,17 @@ +- commits: + - subject: Make implementation multi-threading compatible + hash: 95d21b85ba4b12ea6c8de5f1ff1e395008e47c19 + body: | + Refactor the codebase to ensure types are Send. This also removes the + requirement for a LocalSet when calling `seek_target` + footer: + Change-type: minor + change-type: minor + author: Felipe Lalanne + nested: [] + version: 0.6.0 + title: "" + date: 2025-02-16T22:51:18.365Z - commits: - subject: Rename Worker methods for readability hash: 6708fb238af343e07a69b826e44f261662fea9e8 diff --git a/CHANGELOG.md b/CHANGELOG.md index e0d46d8..fcead98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! This project adheres to [Semantic Versioning](http://semver.org/). +# v0.6.0 +## (2025-02-16) + +* Make implementation multi-threading compatible [Felipe Lalanne] + # v0.5.0 ## (2025-02-14) diff --git a/Cargo.toml b/Cargo.toml index e15ccc6..db84bb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gustav" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "An automated job orchestration library to build and execute dynamic workflows"