Releases: karelvaculik/pyreball
Releases · karelvaculik/pyreball
Version 2.2.0
- Added support for Seaborn's
PairGrid
,FacetGrid
,JointGrid
, andClusterGrid
.
Version 2.1.2
- Version of installed
bokeh
package is now used to create matching JavaScript links. - Fixed invalid link in Configuration page of documentation.
Version 2.1.1
- Fixed logging by replacing custom logger creation with standard
getLogger
call. The logging won't break user's logging configuration anymore.
Version 2.1.0
- Added support for Python 3.12.
- Fixed erroneous highlighting behaviour for
code
,code_block
andprint_code_block
functions whenNone
value was used forsyntax_highlight
parameter. - Arbitrary string value can be now passed to
syntax_highlight
parameter
ofcode
,code_block
andprint_code_block
functions. This allows to use languages
supported by Highlight.js library. - Internals:
- Replaced with
setup.py
withpyproject.toml
and Poetry, moved source code
undersrc
directory. - Dependency on
pkg_resources
replaced withimportlib
for Python >= 3.9. - Ruff is now used for linting and formatting.
- Added missing
py.typed
file.
- Replaced with
Version 2.0.0
- Added option
-m
to specify input as module. - Changed the behaviour of CLI options to allow usage of
-m
together with script
arguments. Now the script arguments must be always passed after--
. - Added example with custom script argument to documentation.
Version 1.0.0
- Created documentation at readthedocs.
- Replaced
print_html()
function withprint()
. - Replaced
print_code()
function withprint_code_block()
. - Replaced
plot_graph()
withprint_figure()
. - Removed
plot_multi_graph
. An example how to achieve the same is now in docs. - Replaced code-prettify with highlight.js for code blocks.
print_h1
, ...,print_h6
functions can now take aReference
object.- Added new text elements
div()
,span()
,code()
,code_block()
,a()
, andtag()
.
Replacedol()
andul()
witholist()
andulist()
. - Added new parameters to almost all HTML elements - in particular parameters
cl
andattrs
. - Updated various CLI arguments and config parameters.
- Updated template and config files.
- Updated support for newer versions of 3rd party dependencies in examples.
Version 0.1.1
- Added
replace_newlines_with_br
parameter toprint_div
to control replacement of newline characters. - It is newly possible to pass custom script arguments.
- Replaced
--output-dir
parameter with--output-path
parameter.
Version 0.1.0
Initial release.