Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rsalmei committed Jun 1, 2023
1 parent 99ec538 commit da8454e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
# Changelog


## 3.1.4 - May 31, 2023
- support spaces at the start and end of titles and units (removed trim)


## 3.1.3 - May 26, 2023
- better error handling of invalid alive_it calls before iterating it
- better error message when detecting nested uses of alive_progress
- better error handling of invalid `alive_it` calls before iterating it
- detect nested uses of alive_progress and throw a clearer error message


## 3.1.2 - May 08, 2023
- fix some exotic ANSI Escape Codes not being printed, by including support for terminal [OSC](https://en.wikipedia.org/wiki/ANSI_escape_code#OSC)
- fix some exotic ANSI Escape Codes not being printed by supporting terminal [OSC](https://en.wikipedia.org/wiki/ANSI_escape_code#OSC)


## 3.1.1 - Apr 08, 2023
- support for printing ANSI Escape Codes like set console title, avoiding printing newlines
- support for printing ANSI Escape Codes without extra newlines, like "set console title"
- typing annotations in `alive_it`, so collection types are correctly identified


Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -892,9 +892,10 @@ You can also set it system-wide using `config_handler`, so you don't need to pas

<br>Complete [here](https://github.com/rsalmei/alive-progress/blob/main/CHANGELOG.md).

- 3.1.3: better error handling of invalid alive_it calls, better error message when detecting nested uses of alive_progress
- 3.1.4: support spaces at the start and end of titles and units
- 3.1.3: better error handling of invalid `alive_it` calls, detect nested uses of alive_progress and throw a clearer error message
- 3.1.2: fix some exotic ANSI Escape Codes not being printed (OSC)
- 3.1.1: support for printing ANSI Escape Codes like set console title, typing annotations in `alive_it`
- 3.1.1: support for printing ANSI Escape Codes without extra newlines, typing annotations in `alive_it`
- 3.1.0: new resuming computations support with `skipped` items, new `max_cols` config setting for jupyter, fix fetching the size of the terminal when using stderr, officially supports Python 3.11
- 3.0.1: fix for logging streams that extend StreamHandler but doesn't allow changing streams
- 3.0.0: units support with automatic and configurable scaling and precision, automatic stats scaling for slow throughputs, support for using `sys.stderr` and other files instead of `sys.stdout`, smoothed out the rate estimation, more queries into the currently running widgets' data, help system in configuration errors
Expand Down
2 changes: 1 addition & 1 deletion alive_progress/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .core.configuration import config_handler
from .core.progress import alive_bar, alive_it

VERSION = (3, 1, 3)
VERSION = (3, 1, 4)

__author__ = 'Rogério Sampaio de Almeida'
__email__ = '[email protected]'
Expand Down

0 comments on commit da8454e

Please sign in to comment.