Skip to content

Commit 8a65685

Browse files
authored
make new patch release (#388)
Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com>
1 parent acba924 commit 8a65685

File tree

8 files changed

+29
-22
lines changed

8 files changed

+29
-22
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
55

66
https://github.com/plotly/plotly.rs/pull/350
77

8+
## [0.14.1] - 2026-02-15
9+
10+
### Fixed
11+
12+
- [[#387](https://github.com/plotly/plotly.rs/pull/387)] Fix HeatMap hovertext/text dimensions
13+
- [[#385](https://github.com/plotly/plotly.rs/pull/385)] Add `{x,y}gap` parameter to heatmaps
14+
- [[#381](https://github.com/plotly/plotly.rs/pull/381)] Make `Plot::default()` behave like `Plot::new()`
15+
816
## [0.14.0] - 2026-01-10
917

1018
### Fixed

docs/book/src/fundamentals/static_image_export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ exporter.close();
111111
- **PDF**: Portable Document Format
112112

113113
### Deprecated
114-
- **EPS**: Encapsulated PostScript (will be removed in version 0.14.0)
114+
- **EPS**: Encapsulated PostScript (will be removed in version 0.15.0)
115115

116116
## String Export
117117

plotly/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
description = "A plotting library powered by Plotly.js"
55
authors = [
66
"Ioannis Giagkiozis <i.giagkiozis@gmail.com>",
@@ -49,9 +49,9 @@ all = [
4949
# This is used for enabling extra debugging messages and debugging functionality
5050
debug = ["plotly_static?/debug"]
5151

52-
# DEPRECATED: kaleido feature will be removed in version 0.14.0. Use `static_export_*` features instead.
52+
# DEPRECATED: kaleido feature will be removed in version 0.15.0. Use `static_export_*` features instead.
5353
kaleido = ["plotly_kaleido"]
54-
# DEPRECATED: kaleido_download feature will be removed in version 0.14.0. Use `static_export_wd_download` instead.
54+
# DEPRECATED: kaleido_download feature will be removed in version 0.15.0. Use `static_export_wd_download` instead.
5555
kaleido_download = ["plotly_kaleido/download"]
5656

5757

plotly/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! ## Feature Deprecation Notice
66
//!
77
//! The `kaleido` and `kaleido_download` features are deprecated since version
8-
//! 0.13.0 and will be removed in version 0.14.0. Please migrate to the
8+
//! 0.13.0 and will be removed in version 0.15.0. Please migrate to the
99
//! `plotly_static` and `static_export_*` features instead.
1010
#![recursion_limit = "256"] // lets us use a large serde_json::json! macro for testing crate::layout::Axis
1111
extern crate askama;
@@ -15,14 +15,14 @@ extern crate serde;
1515
#[cfg(feature = "kaleido")]
1616
#[deprecated(
1717
since = "0.13.0",
18-
note = "kaleido feature is deprecated and will be removed in version 0.14.0. Use plotly_static feature instead"
18+
note = "kaleido feature is deprecated and will be removed in version 0.15.0. Use plotly_static feature instead"
1919
)]
2020
const _KALEIDO_DEPRECATED: () = ();
2121

2222
#[cfg(feature = "kaleido_download")]
2323
#[deprecated(
2424
since = "0.13.0",
25-
note = "kaleido_download feature is deprecated and will be removed in version 0.14.0. Use plotly_static_download feature instead"
25+
note = "kaleido_download feature is deprecated and will be removed in version 0.15.0. Use plotly_static_download feature instead"
2626
)]
2727
const _KALEIDO_DOWNLOAD_DEPRECATED: () = ();
2828

plotly/src/plot.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Consider using the `to_html` method obtain a string representation instead. If u
6262
- ImageFormat::WEBP
6363
- ImageFormat::SVG
6464
- ImageFormat::PDF
65-
- ImageFormat::EPS // will be removed in version 0.14.0
65+
- ImageFormat::EPS // will be removed in version 0.15.0
6666
6767
Used as follows:
6868
let plot = Plot::new();
@@ -427,11 +427,11 @@ impl Plot {
427427
/// at the given location using kaleido.
428428
///
429429
/// This function is deprecated since version 0.13.0. The kaleido-based
430-
/// implementation will be removed in version 0.14.0. Use
430+
/// implementation will be removed in version 0.15.0. Use
431431
/// `plotly_static` feature instead for static image export functionality.
432432
#[deprecated(
433433
since = "0.13.0",
434-
note = "kaleido-based implementation is deprecated. Use plotly_static feature instead. The kaleido implementation will be removed in version 0.14.0"
434+
note = "kaleido-based implementation is deprecated. Use plotly_static feature instead. The kaleido implementation will be removed in version 0.15.0"
435435
)]
436436
#[cfg(feature = "kaleido")]
437437
pub fn write_image<P: AsRef<Path>>(
@@ -460,11 +460,11 @@ impl Plot {
460460
/// [ImageFormat::PNG] and [ImageFormat::WEBP]
461461
///
462462
/// This function is deprecated since version 0.13.0. The kaleido-based
463-
/// implementation will be removed in version 0.14.0. Use
463+
/// implementation will be removed in version 0.15.0. Use
464464
/// `plotly_static` feature instead for static image export functionality.
465465
#[deprecated(
466466
since = "0.13.0",
467-
note = "kaleido-based implementation is deprecated. Use plotly_static feature instead. The kaleido implementation will be removed in version 0.14.0"
467+
note = "kaleido-based implementation is deprecated. Use plotly_static feature instead. The kaleido implementation will be removed in version 0.15.0"
468468
)]
469469
#[cfg(feature = "kaleido")]
470470
pub fn to_base64(
@@ -497,11 +497,11 @@ impl Plot {
497497
/// Convert the `Plot` to SVG and return it as a String using kaleido.
498498
///
499499
/// This function is deprecated since version 0.13.0. The kaleido-based
500-
/// implementation will be removed in version 0.14.0. Use
500+
/// implementation will be removed in version 0.15.0. Use
501501
/// `plotly_static` feature instead for static image export functionality.
502502
#[deprecated(
503503
since = "0.13.0",
504-
note = "kaleido-based implementation is deprecated. Use plotly_static feature instead. The kaleido implementation will be removed in version 0.14.0"
504+
note = "kaleido-based implementation is deprecated. Use plotly_static feature instead. The kaleido implementation will be removed in version 0.15.0"
505505
)]
506506
#[cfg(feature = "kaleido")]
507507
pub fn to_svg(&self, width: usize, height: usize, scale: f64) -> String {

plotly_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly_derive"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
description = "Internal proc macro crate for Plotly-rs."
55
authors = ["Ioannis Giagkiozis <i.giagkiozis@gmail.com>"]
66
license = "MIT"

plotly_kaleido/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ pub enum ImageFormat {
4141
/// Encapsulated PostScript format (deprecated)
4242
///
4343
/// This format is deprecated since version 0.13.0 and will be removed in
44-
/// version 0.14.0. Use SVG or PDF instead for vector graphics. EPS is
44+
/// version 0.15.0. Use SVG or PDF instead for vector graphics. EPS is
4545
/// not supported in the open source version.
4646
#[deprecated(
4747
since = "0.13.0",
48-
note = "Use SVG or PDF instead. EPS variant will be removed in version 0.14.0"
48+
note = "Use SVG or PDF instead. EPS variant will be removed in version 0.15.0"
4949
)]
5050
EPS,
5151
}

plotly_static/src/lib.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279
//!
280280
//! MIT License - see LICENSE file for details.
281281
282-
// TODO: remove this once version 0.14.0 is out
282+
// TODO: remove this once version 0.15.0 is out
283283
#![allow(deprecated)]
284284
use std::fs::File;
285285
use std::io::prelude::*;
@@ -320,7 +320,7 @@ mod webdriver;
320320
/// # Deprecated Formats
321321
///
322322
/// - **EPS**: Encapsulated PostScript format (deprecated since 0.13.0, will be
323-
/// removed in 0.14.0)
323+
/// removed in 0.15.0)
324324
/// - Use SVG or PDF instead for vector graphics
325325
/// - EPS is not supported in the open source version and in versions prior to
326326
/// 0.13.0 has been generating empty images.
@@ -349,11 +349,11 @@ pub enum ImageFormat {
349349
/// Encapsulated PostScript format (deprecated)
350350
///
351351
/// This format is deprecated since version 0.13.0 and will be removed in
352-
/// version 0.14.0. Use SVG or PDF instead for vector graphics. EPS is
352+
/// version 0.15.0. Use SVG or PDF instead for vector graphics. EPS is
353353
/// not supported in the open source Plotly ecosystem version.
354354
#[deprecated(
355355
since = "0.13.0",
356-
note = "Use SVG or PDF instead. EPS variant will be removed in version 0.14.0"
356+
note = "Use SVG or PDF instead. EPS variant will be removed in version 0.15.0"
357357
)]
358358
EPS,
359359
}
@@ -838,7 +838,6 @@ impl StaticExporter {
838838
/// ImageFormat::SVG the function will generate plain SVG text, for
839839
/// other formats it will return base64-encoded data.
840840
///
841-
///
842841
/// # Examples
843842
///
844843
/// ```no_run

0 commit comments

Comments
 (0)