Skip to content

Commit b50444c

Browse files
Updated version v4.7.3
1 parent 176fe8a commit b50444c

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.3] - 2025-09-12
9+
10+
### Changed
11+
12+
- `ggsave()`: Large plot dimensions without units now require explicit unit specification. <br>
13+
When plot size exceeds 20 without specifying units (e.g., `ggsave(p, 300, 400)`), <br>
14+
we ask to specify units explicitly: <br>
15+
`ggsave(p, 300, 400, unit='px')` or `ggsave(p, 3, 4, unit='in')`.
16+
17+
### Fixed
18+
19+
- `ggtb()` support in Swing/Batik frontend.
20+
- Multiline support for axis labels in polar coordinates.
21+
- When the plot size in `ggsave()` is specified in pixels, `dpi` now affects <br>
22+
only the physical size, not the pixel dimensions as before.
23+
- Blocking `SwingUtilities.invokeAndWait()` call in plot image export (AWT backend)
24+
825
## [4.7.2] - 2025-09-01
926

1027
### 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.3-SNAPSHOT" // see also: python-package/lets_plot/_version.py
46+
version = "4.7.3" // 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 & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
1-
## [4.7.3] - 2025-mm-dd
1+
## [4.7.4] - 2025-mm-dd
22

33
### Added
44

55
### Changed
66

7-
- `ggsave()`: Large plot dimensions without units now require explicit unit specification. <br>
8-
When plot size exceeds 20 without specifying units (e.g., `ggsave(p, 300, 400)`), <br>
9-
we ask to specify units explicitly: <br>
10-
`ggsave(p, 300, 400, unit='px')` or `ggsave(p, 3, 4, unit='in')`.
11-
127
### Fixed
13-
14-
- `ggtb()` support in Swing/Batik frontend.
15-
- Multiline support for axis labels in polar coordinates.
16-
- When the plot size in `ggsave()` is specified in pixels, `dpi` now affects <br>
17-
only the physical size, not the pixel dimensions as before.
18-
- Blocking `SwingUtilities.invokeAndWait()` call in plot image export (AWT backend)

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.3.dev1'
6+
__version__ = '4.7.3'

0 commit comments

Comments
 (0)