Releases: mkaz/termgraph
Releases · mkaz/termgraph
Termgraph v0.7.6
- Fix
--no-readableargument that was accidentally removed in v0.7.4 - Use
format_valueconsistently across all chart types - Add custom tick support for VerticalChart
- Add formatting tests
Props to @TarEnethil for the contribution 🙏
Termgraph v0.7.5
- Fixes issue with histograms not showing max value if equal to upper border #124
Props to @ivanpesin for the contribution 🙏
Termgraph v0.7.4
Maintenance Release
- Fix duplicate titles
- Move read_data to Data class
- Remove print output from read_data
- Switch colorama init to just_fix_windows_console
- Remove unused check_data function
- Remove Optional type hint from require fields
- Remove global variables for TICK and DELIM
- Use DELIM constant, was hard coded
- Fixes around custom_tick
Termgraph v0.7.3
- Fixes support for flat data.
- Adds support for named parameters.
Enables creating data like so:
data = Data(
labels=["Q1", "Q2", "Q3", "Q4"],
data=[10, 20, 40, 26],
)Termgraph v0.7.2
Termgraph v0.7.1
- Fixes issue with --color flag broken #119
Termgraph v0.7.0
Large refactorization and breaking up the termgraph.py and module.py files into smaller classes, and using more shared code between the command-line and module. Standardizes more args and keeps behavior consistent.
There shouldn't be any API or functional changes, but since it was a fair amount of code changed I bumped up the version.
Termgraph v0.6.2
Termgraph v0.6.1
Termgraph v0.6.0
Upgrade Termgraph to Python 3.9 minimum version
- See PR #117 for full details
- Fix GitHub actions and commands for lint, typecheck, testing
- Start refactoring coming code to shared file
- Update dependency versions