Skip to content

Commit 7c2b65f

Browse files
authored
Merge pull request #6010 from Textualize/bump511
bump
2 parents b56f349 + 725f359 commit 7c2b65f

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [5.1.1] - 2025-07-21
9+
10+
### Fixed
11+
12+
- Fixed overly large distribution, no code changes https://github.com/Textualize/textual/pull/6010
13+
814
## [5.1.0] - 2025-07-31
915

1016
### Added
@@ -3035,6 +3041,7 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
30353041
- New handler system for messages that doesn't require inheritance
30363042
- Improved traceback handling
30373043

3044+
[5.1.1]: https://github.com/Textualize/textual/compare/v5.1.0...v5.1.1
30383045
[5.1.0]: https://github.com/Textualize/textual/compare/v5.0.1...v5.1.0
30393046
[5.0.1]: https://github.com/Textualize/textual/compare/v5.0.0...v5.0.1
30403047
[5.0.0]: https://github.com/Textualize/textual/compare/v4.1.0...v5.0.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "textual"
3-
version = "5.1.0"
3+
version = "5.1.1"
44
homepage = "https://github.com/Textualize/textual"
55
repository = "https://github.com/Textualize/textual"
66
documentation = "https://textual.textualize.io/"

src/textual/widgets/_input.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ class Input(ScrollView):
9898
show=False,
9999
),
100100
Binding(
101-
"ctrl+right", "cursor_right_word", "Move cursor right a word", show=False
101+
"ctrl+right",
102+
"cursor_right_word",
103+
"Move cursor right a word",
104+
show=False,
102105
),
103106
Binding(
104107
"ctrl+shift+right",

0 commit comments

Comments
 (0)