-
Notifications
You must be signed in to change notification settings - Fork 6
/
CHANGELOG.txt
39 lines (27 loc) · 1.15 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
0.1.0: Initial version (unreleased)
0.2.0: First released version:
- increased resolution with multiple output lines per sparkline
- show gaps in input numbers for missing data
- issue warnings for negative values (allowed, but misleading)
- tested on Python 2 and 3
- packaged code
0.3.0: Second release:
- removed typos related to singular/plural forms of "sparkline/s"
- added color emphasis in output using "termcolor" package (if present)
0.4.0: Third release:
- made rounding consistent across Python 2 and 3 (bankers' rounding)
- added future dependancy for this kind of rounding in Python 2
- added filter to unclutter input numbers (remove commas, etc.)
- added tox support
- added more tests
- added asciicast to README.rst
0.4.1: Fourth release:
- improved command-line option -e/--emphasize to take only one argument,
but can be used repeatedly now, which reduces unexpected behaviour
0.4.2: Fifth release:
- fixed a buglet preventing pip install without future already installed
0.5.0: Sixth release:
- dropped Python 2 support
- replaced Travis build with GitHub build action
- removed minified pytest code
- added a fix regarding regex for Python 3.12