Skip to content

Commit e64b8a8

Browse files
Updated version v2.1.0
1 parent 6e2ac60 commit e64b8a8

File tree

4 files changed

+51
-46
lines changed

4 files changed

+51
-46
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,53 @@ 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.1.0] - 2021-08-16
9+
10+
### Added
11+
12+
- Ordering categories. New parameters in the `as_discrete` function:
13+
* `order_by` (string) - the name of the variable by which the ordering will be performed;
14+
* `order` (int) - the ordering direction - 1 for ascending direction and -1 for descending (default value).
15+
16+
See: [as_discrete](https://github.com/JetBrains/lets-plot/blob/master/docs/as_discrete.md).
17+
18+
- Basemap tiles configuring:
19+
- Subdomains parameter `{s}` for XYZ raster tiles.
20+
- Solid color tiles: `maptiles_solid()`.
21+
- Builtin configurations for some 3rd party maptile services. The `lets_plot.tilesets` module.
22+
23+
See: [Configuring basemap tiles](https://github.com/JetBrains/lets-plot/blob/master/docs/basemap_tiles.md).
24+
25+
### Changed
26+
27+
- Upgraded Apach Batik version to 1.14 (was 1.12) [[#398](https://github.com/JetBrains/lets-plot/issues/398)].
28+
- Upgraded Kotlin version to 1.5.21 (was 1.4.21)
29+
- Upgraded Gradle version to 7.1.1 (was 6.8.3)
30+
31+
### Fixed
32+
33+
- geom_livemap: properly handle `max_zoom` pamareter in `maptiles_zxy()`.
34+
- Strange looking legend for tiles [[#245](https://github.com/JetBrains/lets-plot/issues/245)].
35+
- Need to skip "bad" values during scale transformation [[#301](https://github.com/JetBrains/lets-plot/issues/301)].
36+
- NPE on negative value in data and scale_xxx(trans='log10') [[#292](https://github.com/JetBrains/lets-plot/issues/292)].
37+
- Legend is broken when using scale_fill_brewer with 'trans' parameter [[#284](https://github.com/JetBrains/lets-plot/issues/284)].
38+
- Scale breaks should be distributed evenly on 'sqrt' scale. [[#407](https://github.com/JetBrains/lets-plot/issues/407)].
39+
- Wrong tooltip formatting when used with log10 scales [[#406](https://github.com/JetBrains/lets-plot/issues/406)].
40+
- Bad axis labels when using both plot and layer data [[#327](https://github.com/JetBrains/lets-plot/issues/327)].
41+
- Plot layout looks wrong [[#403](https://github.com/JetBrains/lets-plot/issues/403)].
42+
- map_join is not working correctly when `map=geocoder` [[#380](https://github.com/JetBrains/lets-plot/issues/380)]
43+
- Tooltip default formatting should not change after adding other variables to tooltip [[#388](https://github.com/JetBrains/lets-plot/issues/388)].
44+
- Tooltip on axis: increase the font size. [[#399](https://github.com/JetBrains/lets-plot/issues/399)].
45+
- Tooltip format for variable is not working [[#401](https://github.com/JetBrains/lets-plot/issues/401)].
46+
- Wrong direction in colorbars (legend) [[#204](https://github.com/JetBrains/lets-plot/issues/204)].
47+
- geom_jitter: show axis tooltips (same as geom_point) [[#412](https://github.com/JetBrains/lets-plot/issues/412)].
48+
- Outlier tooltips: the spout sometime is too long (boxplot) [[#358](https://github.com/JetBrains/lets-plot/issues/358)].
49+
- Faceted plot is broken by geom with "constant" aesthetics [[#391](https://github.com/JetBrains/lets-plot/issues/391)].
50+
- Interactive maps in AWT (PyCharm plugin):
51+
- A memory leak in PyCharm caused by a `final void dispose()` method in PlotPanel.
52+
- When showing map in PyCharm CPU is busy all the time, even then nothing is changing on screen.
53+
- Click events detection.
54+
855
## [2.0.4] - 2021-06-09
956

1057
### Changed

build.gradle

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

6565
allprojects {
6666
group = 'org.jetbrains.lets-plot'
67-
version = "2.1.1-alpha1"
68-
project.ext.js_artifact_version = "2.1.1.dev1"
67+
version = "2.1.0"
68+
project.ext.js_artifact_version = "2.1.0"
6969
// see also: python-package/lets_plot/_version.py
7070

7171
repositories {

future_changes.md

Lines changed: 1 addition & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,7 @@
1-
## [2.1.0] - 2021-08-??
1+
## [2.1.1] - 2021-??-??
22

33
### Added
44

5-
- Ordering categories. New parameters in the `as_discrete` function:
6-
* `order_by` (string) - the name of the variable by which the ordering will be performed;
7-
* `order` (int) - the ordering direction - 1 for ascending direction and -1 for descending (default value).
8-
9-
See: [as_discrete](https://github.com/JetBrains/lets-plot/blob/master/docs/as_discrete.md).
10-
11-
12-
- Basemap tiles configuring:
13-
- Subdomains parameter `{s}` for XYZ raster tiles.
14-
- Solid color tiles: `maptiles_solid()`.
15-
- Builtin configurations for some 3rd party maptile services. The `lets_plot.tilesets` module.
16-
17-
See: [Configuring basemap tiles](https://github.com/JetBrains/lets-plot/blob/master/docs/basemap_tiles.md).
18-
19-
205
### Changed
216

22-
- Upgraded Apach Batik version to 1.14 (was 1.12) [[#398](https://github.com/JetBrains/lets-plot/issues/398)].
23-
- Upgraded Kotlin version to 1.5.21 (was 1.4.21)
24-
- Upgraded Gradle version to 7.1.1 (was 6.8.3)
25-
26-
277
### Fixed
28-
29-
- geom_livemap: properly handle `max_zoom` pamareter in `maptiles_zxy()`.
30-
- Strange looking legend for tiles [[#245](https://github.com/JetBrains/lets-plot/issues/245)].
31-
- Need to skip "bad" values during scale transformation [[#301](https://github.com/JetBrains/lets-plot/issues/301)].
32-
- NPE on negative value in data and scale_xxx(trans='log10') [[#292](https://github.com/JetBrains/lets-plot/issues/292)].
33-
- Legend is broken when using scale_fill_brewer with 'trans' parameter [[#284](https://github.com/JetBrains/lets-plot/issues/284)].
34-
- Scale breaks should be distributed evenly on 'sqrt' scale. [[#407](https://github.com/JetBrains/lets-plot/issues/407)].
35-
- Wrong tooltip formatting when used with log10 scales [[#406](https://github.com/JetBrains/lets-plot/issues/406)].
36-
- Bad axis labels when using both plot and layer data [[#327](https://github.com/JetBrains/lets-plot/issues/327)].
37-
- Plot layout looks wrong [[#403](https://github.com/JetBrains/lets-plot/issues/403)].
38-
- map_join is not working correctly when `map=geocoder` [[#380](https://github.com/JetBrains/lets-plot/issues/380)]
39-
- Tooltip default formatting should not change after adding other variables to tooltip [[#388](https://github.com/JetBrains/lets-plot/issues/388)].
40-
- Tooltip on axis: increase the font size. [[#399](https://github.com/JetBrains/lets-plot/issues/399)].
41-
- Tooltip format for variable is not working [[#401](https://github.com/JetBrains/lets-plot/issues/401)].
42-
- Wrong direction in colorbars (legend) [[#204](https://github.com/JetBrains/lets-plot/issues/204)].
43-
- geom_jitter: show axis tooltips (same as geom_point) [[#412](https://github.com/JetBrains/lets-plot/issues/412)].
44-
- Outlier tooltips: the spout sometime is too long (boxplot) [[#358](https://github.com/JetBrains/lets-plot/issues/358)].
45-
- Faceted plot is broken by geom with "constant" aesthetics [[#391](https://github.com/JetBrains/lets-plot/issues/391)].
46-
- Interactive maps in AWT (PyCharm plugin):
47-
- A memory leak in PyCharm caused by a `final void dispose()` method in PlotPanel.
48-
- When showing map in PyCharm CPU is busy all the time, even then nothing is changing on screen.
49-
- Click events detection.

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.1.1.dev1'
6+
__version__ = '2.1.0'

0 commit comments

Comments
 (0)