From c862b62b6e8bc5422b925643ebd2d13558c175f9 Mon Sep 17 00:00:00 2001 From: axect Date: Mon, 20 Nov 2023 09:28:28 +0900 Subject: [PATCH] RLSE: Ver 0.34.2 * New sub-crate : peroxide_num --- Cargo.toml | 4 ++-- RELEASES.md | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c64481d2..9861577d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peroxide" -version = "0.34.1" +version = "0.34.2" authors = ["axect "] edition = "2018" description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax" @@ -35,7 +35,7 @@ blas = { version = "0.22", optional = true } lapack = { version = "0.19", optional = true } serde = { version = "1.0", features = ["derive"], optional = true } json = { version = "0.12", optional = true } -arrow2 = { version = "0.17", features = ["io_parquet", "io_parquet_compression"], optional = true } +arrow2 = { version = "0.18", features = ["io_parquet", "io_parquet_compression"], optional = true } [package.metadata.docs.rs] rustdoc-args = [ "--html-in-header", "katex-header.html", "--cfg", "docsrs"] diff --git a/RELEASES.md b/RELEASES.md index b233812f..19cdc54c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,18 @@ +# Release 0.34.2 (2023-11-20) + +## New sub-crate : `peroxide-num` + +* Add new sub-crate : `peroxide-num` +* Change all dependencies of `ExpLogOps, PowOps, TrigOps` to `peroxide-num` + +## Fix errata + +* R example in `structure/matrix` (#56) (Thanks to [@rdavis120](https://github.com/rdavis120)) + +## Fix old syntax + +* Fix old syntax - e.g. explicit `into_iter`, `Vec::with_capacity` & `set_len` + # Release 0.34.1 (2023-08-03) ## Modify Statistics of `WeightedUniform`