Skip to content

Commit

Permalink
🔖 Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisbr committed Oct 2, 2021
1 parent 678146c commit f9d444c
Showing 1 changed file with 1 addition and 1 deletion.
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 = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
license = "MIT"
desc = "Print data in formatted tables"
authors = ["Ronan Arraes Jardim Chagas <[email protected]>"]
version = "1.1.0"
version = "1.2.0"

[compat]
julia = "1"
Expand Down

2 comments on commit f9d444c

@ronisbr
Copy link
Owner Author

@ronisbr ronisbr commented on f9d444c Oct 2, 2021

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes

  • All deprecations introduced in v0.12 are now removed.
  • The HTML decoration can now used any custom style. (PR Add decoration style #135)
  • The HTML backend now has an option to minify the output.
  • The HTML backend now has the option allow_html_in_cells so that the user can use HTML code inside the table.
  • The alignment option in HTML backend can now be set to :n so that no alignment annotation is added.
  • The option HTML can be passed to pretty_table so that an HTML object is returned. (Issue pretty_tables should return object that is showable as "text/html" #130)
  • The text backend has now a new custom cell called AnsiTextCell, which allows adding a cell with ANSI escape sequences inside the table. (Issue Image cells in text backend #142) (PR Implement AnsiTextCell #143)
  • The keyword color can now be used when converting a table to string to render the ANSI escape sequences.
  • The HTML rendering now uses the section thead and tbody.
  • Some special characters in HTML are now escaped to ensure a correct rendering.
  • The vectors related to filtering are now set to UnitRange if filtering is not present. Hence, the performance when printing huge tables cropped to the display size is highly improved by avoiding allocating big vectors. (Issue Slow compact printing of large table #140) (PR sparse UnitRange by default for row and column indices #144)
  • The horizontal line selection is now consistent if the vertical cropping is set to :middle. (Issue A bug related to body_hlines #133)

@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/45970

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 v1.2.0 -m "<description of version>" f9d444ce8e6523613a4e2e9a818279e419b03ac3
git push origin v1.2.0

Please sign in to comment.