Skip to content

Commit

Permalink
🔖 Version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisbr committed Sep 21, 2023
1 parent 608f207 commit 403d998
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "0c614874-6106-40ed-a7c2-2f1cd0bff883"
license = "MIT"
desc = "Pure Julia implementation of the command less"
authors = ["Ronan Arraes Jardim Chagas <[email protected]>"]
version = "0.4.0"
version = "0.5.0"

[deps]
Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"
Expand Down
2 changes: 1 addition & 1 deletion src/TerminalPager.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ include("./types.jl")
############################################################################################

const CSI = "\x1b["
const PKG_VERSION = v"0.3.0"
const PKG_VERSION = v"0.5.0"

# Crayons
const _CRAYON_B = string(crayon"bold")
Expand Down

2 comments on commit 403d998

@ronisbr
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • We now manage the user preferences using the package Preferences.jl. Hence, we dropped all the previous functions to perform customization, leading to breaking changes.
  • ^ is mapped to BOL (PR add caret as alternate keybinding for bol #28)
  • The pager supports a new visual mode in which the user can select and copy lines.
  • The pager can use the alternate screen buffer, which preserves the current buffer content. This mode is now the default one when showing documentation using @help or in the REPL mode pager?>. (Issue Use the "alternate screen" to keep the REPL clean #29)
  • We use an intermediate buffer to draw the view, leading to less screen flickering.
  • The pre-compilation statements are generated by PrecompileTools.jl.
  • We now consider the entire display size when showing docstrings using @help.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/91919

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 403d9983450d3a2782aa763c4fa01423b816c6b0
git push origin v0.5.0

Please sign in to comment.