Skip to content

Releases: mkaz/termgraph

Termgraph v0.7.5

08 Dec 14:17

Choose a tag to compare

  • Fixes issue with histograms not showing max value if equal to upper border #124

Props to @ivanpesin for the contribution 🙏

Termgraph v0.7.4

27 Oct 14:20

Choose a tag to compare

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

18 Sep 15:39

Choose a tag to compare

  • 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

06 Sep 14:01

Choose a tag to compare

  • Fixes grayed out 0.00 value #93 and #103

Termgraph v0.7.1

06 Sep 12:38

Choose a tag to compare

  • Fixes issue with --color flag broken #119

Termgraph v0.7.0

03 Sep 15:42

Choose a tag to compare

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

02 Sep 03:09

Choose a tag to compare

  • Percentage feature, implements #106 - Props to @abbudao

    • Add new --percentage flag
  • Fixes display issue when only one category #71 - Props to @zxytim

Termgraph v0.6.1

02 Sep 01:41

Choose a tag to compare

  • Fixes #113 - displaying blank lines when no header (title or category)
  • Fixes #115 - Adds checks for data passed in to check_data to avoid indexing into None

Termgraph v0.6.0

22 Aug 13:36

Choose a tag to compare

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

Termgraph v0.5.4

20 Aug 13:39

Choose a tag to compare

Minor update - confirm packaging and publishing works again.

PR #116 - Allow data to be first in column, labels second. Props: @TadLeonard
PR #112 - Check flag for no_values to not print. Props @Robolightning
PR #109 - Fix issue with numbers and labeling between -1 and 1. Props @javadr
PR #107 - Add new arg --no-readable to disable reading numbers. Props @rjp

Thanks to all the contributors 👏