diff --git a/kivy/core/text/__init__.py b/kivy/core/text/__init__.py index caa7c82a8..c63cd5f8a 100644 --- a/kivy/core/text/__init__.py +++ b/kivy/core/text/__init__.py @@ -5,6 +5,9 @@ Text Abstraction of text creation. Depending of the selected backend, the text rendering can be more or less accurate. +.. versionchanged:: 1.5.0 + :data:`LabelBase.line_height` added. + .. versionchanged:: 1.0.7 The :class:`LabelBase` don't generate any texture is the text have a width <= 1. diff --git a/kivy/uix/label.py b/kivy/uix/label.py index abbfba25a..ce1de6195 100644 --- a/kivy/uix/label.py +++ b/kivy/uix/label.py @@ -290,10 +290,10 @@ class Label(Widget): :data:`line_height` is a :class:`~kivy.properties.NumericProperty`, default to 1.0. + + .. versionadded:: 1.5.0 ''' - - bold = BooleanProperty(False) '''Indicates use of the bold version of your font.