Skip to content

Commit

Permalink
Merge pull request #292 from vizzuhq/release-0.17.0
Browse files Browse the repository at this point in the history
changed: set version to 0.17.0
  • Loading branch information
veghdev committed Dec 21, 2023
2 parents b7b4c3a + 8580a34 commit d2740bc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/ipyvizzu/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys


__version__ = "0.16.2"
__version__ = "0.17.0"
__version_info__ = tuple(map(int, __version__.split(".")))

PYENV = sys.version_info
12 changes: 6 additions & 6 deletions src/ipyvizzu/animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def add_data_frame(

# pylint: disable=line-too-long

reference = "https://ipyvizzu.vizzuhq.com/0.16/reference/ipyvizzu/animation/#ipyvizzu.animation.Data.add_df"
reference = "https://ipyvizzu.vizzuhq.com/0.17/reference/ipyvizzu/animation/#ipyvizzu.animation.Data.add_df"
warnings.warn(
f"'add_data_frame' is deprecated and will be removed in future versions. Use 'add_df' instead - see {reference}",
DeprecationWarning,
Expand Down Expand Up @@ -456,7 +456,7 @@ def add_data_frame_index(

# pylint: disable=line-too-long

reference = "https://ipyvizzu.vizzuhq.com/0.16/reference/ipyvizzu/animation/#ipyvizzu.animation.Data.add_df_index"
reference = "https://ipyvizzu.vizzuhq.com/0.17/reference/ipyvizzu/animation/#ipyvizzu.animation.Data.add_df_index"
warnings.warn(
f"'add_data_frame_index' is deprecated and will be removed in future versions. Use 'add_df_index' instead - see {reference}",
DeprecationWarning,
Expand Down Expand Up @@ -556,7 +556,7 @@ class ConfigAttr(type):
if the `__getattr__` method called.
For information on all available chart presets see the
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/modules/Presets/#interfaces).
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/modules/types_presets/).
"""

@classmethod
Expand All @@ -583,7 +583,7 @@ def __init__(self, data: Optional[Union[dict, RawJavaScript]]):
data:
A config animation dictionary.
For information on all available config parameters see the
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/Config.Chart/#properties).
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/types_config.Chart/).
""" # pylint: disable=line-too-long

self._data = data
Expand Down Expand Up @@ -615,7 +615,7 @@ def __init__(self, data: Optional[dict]):
A style animation dictionary.
For information on all available style parameters see the [Style][styling-properties]
chapter or the
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/Styles.Chart/#properties).
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/types_styles.Chart/).
""" # pylint: disable=line-too-long

self._data = data
Expand Down Expand Up @@ -652,7 +652,7 @@ def __init__(
[Config][ipyvizzu.animation.Config] and [Style][ipyvizzu.animation.Style].
**options: Dictionary of animation options for example `duration=1`.
For information on all available animation options see the
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/Anim.Options/#properties).
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/types_anim.Options/).
Raises:
ValueError: If `animations` is not set.
Expand Down
6 changes: 3 additions & 3 deletions src/ipyvizzu/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def animate(
[Config][ipyvizzu.animation.Config] and [Style][ipyvizzu.animation.Style].
**options: Dictionary of animation options for example `duration=1`.
For information on all available animation options see the
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/Anim.Options/#properties).
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/interfaces/types_anim.Options/).
Raises:
ValueError: If `animations` is not set.
Expand Down Expand Up @@ -214,7 +214,7 @@ def feature(self, name: str, enabled: bool) -> None:
name:
The name of the chart feature.
For information on all available features see the
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/modules/#feature).
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/modules/vizzu/#feature).
enabled: The new state of the chart feature.
Example:
Expand Down Expand Up @@ -287,7 +287,7 @@ def on( # pylint: disable=invalid-name
event:
The type of the event.
For information on all available events see the
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/modules/Event/#type).
[Vizzu Code reference](https://lib.vizzuhq.com/latest/reference/modules/events/).
handler: The JavaScript method of the event.
Returns:
Expand Down

0 comments on commit d2740bc

Please sign in to comment.