From 2702614f1d496bd4c9cf2de4538738e8fd628023 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Tue, 23 Jan 2024 21:12:09 +0000 Subject: [PATCH] Bump rten-vecmath version --- CHANGELOG.md | 4 ++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- rten-vecmath/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87c07448..b72406ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project 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.3.1] - 2024-01-23 + + - Updated rten-vecmath dependency to latest version + ## [0.3.0] - 2024-01-23 ### Breaking changes diff --git a/Cargo.lock b/Cargo.lock index c9c8e628..3b6bf328 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -307,7 +307,7 @@ dependencies = [ [[package]] name = "rten" -version = "0.3.0" +version = "0.3.1" dependencies = [ "flatbuffers", "libm", @@ -381,7 +381,7 @@ dependencies = [ [[package]] name = "rten-vecmath" -version = "0.1.1" +version = "0.3.0" dependencies = [ "fastrand", "libm", diff --git a/Cargo.toml b/Cargo.toml index b83c2e9d..943bd0c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ default-members = [ [package] name = "rten" -version = "0.3.0" +version = "0.3.1" edition = "2021" authors = ["Robert Knight"] description = "Machine learning runtime" @@ -33,7 +33,7 @@ libm = "0.2.6" rayon = "1.7.0" smallvec = { version = "1.10.0", features = ["union", "const_generics", "const_new"] } rten-tensor = { path = "./rten-tensor", version = "0.3.0" } -rten-vecmath = { path = "./rten-vecmath", version = "0.1.1" } +rten-vecmath = { path = "./rten-vecmath", version = "0.3.0" } [dev-dependencies] serde_json = "1.0.91" diff --git a/rten-vecmath/Cargo.toml b/rten-vecmath/Cargo.toml index ab06f2fb..f71ee945 100644 --- a/rten-vecmath/Cargo.toml +++ b/rten-vecmath/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rten-vecmath" -version = "0.1.1" +version = "0.3.0" edition = "2021" authors = ["Robert Knight"] description = "SIMD vectorized implementations of various math functions used in ML models"