Skip to content

Commit f6cf8ff

Browse files
Updated version v4.7.1
1 parent 7c9c731 commit f6cf8ff

File tree

5 files changed

+37
-29
lines changed

5 files changed

+37
-29
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [4.7.1] - 2025-08-13
9+
10+
### Added
11+
12+
- ggsave():
13+
- support font synthesis for *italic* and **bold** styles.
14+
- `px` unit support for PNG and PDF formats.
15+
- `w`, `h` and `unit` parameters support for SVG [[#1368](https://github.com/JetBrains/lets-plot/issues/1368)].
16+
17+
### Changed
18+
19+
- `facet_wrap()` now drops factor levels that do not appear in the data (i.e., empty panels) by default [[#1322](https://github.com/JetBrains/lets-plot/issues/1322)]. <br>
20+
To keep unused factor levels, use the new `drop` parameter, i.e., `drop=False`.
21+
22+
See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-25c/facet_wrap_empty_panels.ipynb).
23+
- Removed extra spacing between facet strips and plot panels in `facet_wrap()` and `facet_grid()`.
24+
25+
### Fixed
26+
- geom_livemap: can't draw a path crossing the antimeridian [[#649](https://github.com/JetBrains/lets-plot/issues/649)].
27+
- Tooltip for a line have higher priority than points, even if the point is specified first in the layer list [[#1060](https://github.com/JetBrains/lets-plot/issues/1060)].
28+
- geom_ribbon(): tooltip appears in the wrong place on flipped ribbon [[#1334](https://github.com/JetBrains/lets-plot/issues/1334)].
29+
- Arrow crossing -180 longitude is split into two arrows [[#1364](https://github.com/JetBrains/lets-plot/issues/1364)].
30+
- Coordinate limits do not work on reversed scales [[#1365](https://github.com/JetBrains/lets-plot/issues/1365)]
31+
- Misaligned axis labels and ticks in polar coordinates.
32+
- Display order of fill categories not being set correctly in stacked plots? [[#1367](https://github.com/JetBrains/lets-plot/issues/1367)]
33+
- Polars: add handling for `Enum` values [[#1373](https://github.com/JetBrains/lets-plot/issues/1373)]
34+
- Unclear error when using geom_rect with discrete scales [[#1287](https://github.com/JetBrains/lets-plot/issues/1287)]
35+
- xlim() breaks default scale_x_datetime() [[#1348](https://github.com/JetBrains/lets-plot/issues/1348)]
36+
- scale_x_reverse breaks datetime formatting [[#1257](https://github.com/JetBrains/lets-plot/issues/1257)]
37+
- theme(plot_title="blank") doesn't work with gggrid [[#1349](https://github.com/JetBrains/lets-plot/issues/1349)]
38+
- theme: error parsing color value pen [[#1216](https://github.com/JetBrains/lets-plot/issues/1216)]
39+
- Incorrect appearance of stacked density plot in polar coordinates [[#1375](https://github.com/JetBrains/lets-plot/issues/1375)]
40+
841
## [4.7.0] - 2025-07-17
942

1043
### Added

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ val letsPlotTaskGroup by extra { "lets-plot" }
4343

4444
allprojects {
4545
group = "org.jetbrains.lets-plot"
46-
version = "4.7.2-SNAPSHOT" // see also: python-package/lets_plot/_version.py
46+
version = "4.7.1" // see also: python-package/lets_plot/_version.py
4747
// version = "0.0.0-SNAPSHOT" // for local publishing only
4848

4949
// Generate JVM 1.8 bytecode

future_changes.md

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,7 @@
1-
## [4.7.1] - 2025-mm-dd
1+
## [4.7.2] - 2025-mm-dd
22

33
### Added
44

5-
- ggsave():
6-
- support font synthesis for *italic* and **bold** styles.
7-
- `px` unit support for PNG and PDF formats.
8-
- `w`, `h` and `unit` parameters support for SVG [[#1368](https://github.com/JetBrains/lets-plot/issues/1368)].
9-
105
### Changed
116

12-
- `facet_wrap()` now drops factor levels that do not appear in the data (i.e., empty panels) by default [[#1322](https://github.com/JetBrains/lets-plot/issues/1322)]. <br>
13-
To keep unused factor levels, use the new `drop` parameter, i.e., `drop=False`.
14-
15-
See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-25c/facet_wrap_empty_panels.ipynb).
16-
- Removed extra spacing between facet strips and plot panels in `facet_wrap()` and `facet_grid()`.
17-
187
### Fixed
19-
- geom_livemap: can't draw a path crossing the antimeridian [[#649](https://github.com/JetBrains/lets-plot/issues/649)].
20-
- Tooltip for a line have higher priority than points, even if the point is specified first in the layer list [[#1060](https://github.com/JetBrains/lets-plot/issues/1060)].
21-
- geom_ribbon(): tooltip appears in the wrong place on flipped ribbon [[#1334](https://github.com/JetBrains/lets-plot/issues/1334)].
22-
- Arrow crossing -180 longitude is split into two arrows [[#1364](https://github.com/JetBrains/lets-plot/issues/1364)].
23-
- Coordinate limits do not work on reversed scales [[#1365](https://github.com/JetBrains/lets-plot/issues/1365)]
24-
- Misaligned axis labels and ticks in polar coordinates.
25-
- Display order of fill categories not being set correctly in stacked plots? [[#1367](https://github.com/JetBrains/lets-plot/issues/1367)]
26-
- Polars: add handling for `Enum` values [[#1373](https://github.com/JetBrains/lets-plot/issues/1373)]
27-
- Unclear error when using geom_rect with discrete scales [[#1287](https://github.com/JetBrains/lets-plot/issues/1287)]
28-
- xlim() breaks default scale_x_datetime() [[#1348](https://github.com/JetBrains/lets-plot/issues/1348)]
29-
- scale_x_reverse breaks datetime formatting [[#1257](https://github.com/JetBrains/lets-plot/issues/1257)]
30-
- theme(plot_title="blank") doesn't work with gggrid [[#1349](https://github.com/JetBrains/lets-plot/issues/1349)]
31-
- theme: error parsing color value pen [[#1216](https://github.com/JetBrains/lets-plot/issues/1216)]
32-
- Incorrect appearance of stacked density plot in polar coordinates [[#1375](https://github.com/JetBrains/lets-plot/issues/1375)]

js-package/distr/lets-plot.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python-package/lets_plot/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# Use of this source code is governed by the MIT license that can be found in the LICENSE file.
44
#
55
# see: https://www.python.org/dev/peps/pep-0440/#developmental-releases
6-
__version__ = '4.7.2.dev1'
6+
__version__ = '4.7.1'

0 commit comments

Comments
 (0)