Skip to content

Commit

Permalink
Merge pull request #5036 from Textualize/bump0800
Browse files Browse the repository at this point in the history
Bump to 0.80.0
  • Loading branch information
willmcgugan authored Sep 23, 2024
2 parents d103e5f + d0abf60 commit 322a85c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.80.0] - 2024-09-23

### Added

Expand Down Expand Up @@ -2381,6 +2381,7 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
- New handler system for messages that doesn't require inheritance
- Improved traceback handling

[0.80.0]: https://github.com/Textualize/textual/compare/v0.79.0...v0.80.0
[0.79.0]: https://github.com/Textualize/textual/compare/v0.78.0...v0.79.0
[0.78.0]: https://github.com/Textualize/textual/compare/v0.77.0...v0.78.0
[0.77.0]: https://github.com/Textualize/textual/compare/v0.76.0...v0.77.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "textual"
version = "0.79.1"
version = "0.80.0"
homepage = "https://github.com/Textualize/textual"
repository = "https://github.com/Textualize/textual"
documentation = "https://textual.textualize.io/"
Expand Down
3 changes: 3 additions & 0 deletions src/textual/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,10 @@ def __init__(
"""The scroll position on the Y axis."""

scroll_target_x = Reactive(0.0, repaint=False)
"""Scroll target destination, X coord."""

scroll_target_y = Reactive(0.0, repaint=False)
"""Scroll target destination, Y coord."""

show_vertical_scrollbar: Reactive[bool] = Reactive(False, layout=True)
"""Show a vertical scrollbar?"""
Expand Down

0 comments on commit 322a85c

Please sign in to comment.