Skip to content

Commit 3146338

Browse files
Updated version v2.0.1
1 parent c00ccba commit 3146338

File tree

4 files changed

+28
-21
lines changed

4 files changed

+28
-21
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ 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+
## [2.0.1] - 2021-03-17
9+
10+
### Added
11+
12+
- The `alpha` parameter for lines [[#139](https://github.com/JetBrains/lets-plot/issues/139)].
13+
- Tooltips for `geom_segment()` [[#296](https://github.com/JetBrains/lets-plot/issues/296)].
14+
- The `guides()` function [[#52](https://github.com/JetBrains/lets-plot/issues/52)].
15+
- New Java **Swing plot components** to enable embedding Lets-Plot charts into JVM applications.
16+
- See: `vis-swing-common, vis-swing-batik, vis-swing-jfx` modules.
17+
18+
### Fixed
19+
20+
- Fix auto-detection of PyCharm env to enable plotting in SciView while using remote interpreter [[348](https://github.com/JetBrains/lets-plot/issues/348)]
21+
- Fix tooltips appearing outside the specified x/y limits.
22+
- Clippath in accordance to the given limits [[#189](https://github.com/JetBrains/lets-plot/issues/189)].
23+
- Treat a data as DataFrame if both data and map are GeoDataFrames [[#343](https://github.com/JetBrains/lets-plot/issues/343)].
24+
- Removed the restriction on tooltips for small polygons [[#298](https://github.com/JetBrains/lets-plot/issues/298)].
25+
- The x/y axis labels are derived from x/y aesthetics only [[#333](https://github.com/JetBrains/lets-plot/issues/333)].
26+
- Merge 'theme' settings [[#147](https://github.com/JetBrains/lets-plot/issues/147)].
27+
- Add axis tooltips for `geom_bin2d`.
28+
- Outlier tooltips for `geom_ribbon()`.
29+
- Fix tooltip crosshair [[#309](https://github.com/JetBrains/lets-plot/issues/309)].
30+
831
## [2.0.0] - 2021-02-09
932

1033
### Added

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ configurations {
5353

5454
allprojects {
5555
group = 'org.jetbrains.lets-plot'
56-
version = "2.0.2-alpha1"
57-
project.ext.js_artifact_version = "2.0.2.dev1"
56+
version = "2.0.1"
57+
project.ext.js_artifact_version = "2.0.1"
5858
// see also: python-package/lets_plot/_version.py
5959

6060
repositories {

future_changes.md

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,6 @@
1-
## [2.0.1] - 2021-??-??
1+
## [2.0.2] - 2021-??-??
22

33
### Added
44

5-
- The `alpha` parameter for lines [[#139](https://github.com/JetBrains/lets-plot/issues/139)].
6-
- Tooltips for `geom_segment()` [[#296](https://github.com/JetBrains/lets-plot/issues/296)].
7-
- The `guides()` function [[#52](https://github.com/JetBrains/lets-plot/issues/52)].
8-
- New Java **Swing plot components** to enable embedding Lets-Plot charts into JVM applications.
9-
- See: `vis-swing-common, vis-swing-batik, vis-swing-jfx` modules.
10-
115
### Fixed
12-
13-
- Fix auto-detection of PyCharm env to enable plotting in SciView while using remote interpreter [[348](https://github.com/JetBrains/lets-plot/issues/348)]
14-
- Fix tooltips appearing outside the specified x/y limits.
15-
- Clippath in accordance to the given limits [[#189](https://github.com/JetBrains/lets-plot/issues/189)].
16-
- Treat a data as DataFrame if both data and map are GeoDataFrames [[#343](https://github.com/JetBrains/lets-plot/issues/343)].
17-
- Removed the restriction on tooltips for small polygons [[#298](https://github.com/JetBrains/lets-plot/issues/298)].
18-
- The x/y axis labels are derived from x/y aesthetics only [[#333](https://github.com/JetBrains/lets-plot/issues/333)].
19-
- Merge 'theme' settings [[#147](https://github.com/JetBrains/lets-plot/issues/147)].
20-
- Add axis tooltips for `geom_bin2d`.
21-
- Outlier tooltips for `geom_ribbon()`.
22-
- Fix tooltip crosshair [[#309](https://github.com/JetBrains/lets-plot/issues/309)].
6+

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__ = '2.0.2.dev1'
6+
__version__ = '2.0.1'

0 commit comments

Comments
 (0)