Skip to content

Commit

Permalink
release v2.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisschellekens committed Dec 12, 2021
1 parent 0963979 commit 3318fda
Show file tree
Hide file tree
Showing 246 changed files with 13,199 additions and 7 deletions.
2 changes: 1 addition & 1 deletion borb/io/write/ascii_art/ascii_logo.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
borb version 2.0.15
borb version 2.0.16
Joris Schellekens
2 changes: 1 addition & 1 deletion borb/pdf/canvas/layout/hyphenation/hyphenation.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def hyphenate(self, s: str, hyphenation_character: str = chr(173)) -> str:
"""
# don't spend effort on stupid input
assert len(hyphenation_character) == 1
if len(s) <= 1:
if len(s) <= 4:
return s

# check exceptions
Expand Down
Loading

0 comments on commit 3318fda

Please sign in to comment.