From cc7ee6db08f94d82614667f86b26d586cab47da3 Mon Sep 17 00:00:00 2001 From: axect Date: Fri, 1 Mar 2024 12:21:43 +0900 Subject: [PATCH] RLSE: Ver 0.34.6 - Big updates for plot feature --- Cargo.toml | 2 +- RELEASES.md | 13 +++++++++++++ src/util/plot.rs | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d78fcc2..050e0c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peroxide" -version = "0.34.5" +version = "0.34.6" authors = ["axect "] edition = "2018" description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax" diff --git a/RELEASES.md b/RELEASES.md index c52b620..c2ae277 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,16 @@ +# Release 0.34.6 (2024-03-01) + +## Big updates for `plot` feature + +* Add `auto-initialize` flag for `pyo3` +* Add `scienceplots` support. Here are available styles. + * `PlotStyle::Default` : default matplotlib style - no scienceplots required + * `PlotStyle::Science` : scienceplots default style - scienceplots required + * `PlotStyle::Nature` : nature style - scienceplots required + * `PlotStyle::IEEE` : IEEE style - scienceplots required +* Implement `xscale, yscale, xlim, ylim` for `Plot2D` +* You can check these features in [Peroxide Gallery](https://github.com/Axect/Peroxide_Gallery/tree/master/Plot/plot_feature) + # Release 0.34.5 (2024-02-08) * Derive `Serialize` and `Deserialize` for `CubicHermiteSpline` diff --git a/src/util/plot.rs b/src/util/plot.rs index dbcf37d..c334f3b 100644 --- a/src/util/plot.rs +++ b/src/util/plot.rs @@ -5,7 +5,7 @@ //! //! Let's see next ordinary code file. //! -//! ```rust +//! ```no-run //! #[macro_use] //! extern crate peroxide; //! use peroxide::fuga::*;