1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

version bump

This commit is contained in:
Kelly Brazil
2022-04-25 19:25:58 -07:00
parent 5bb4e2b4b6
commit e04cd298fb
3 changed files with 6 additions and 3 deletions

View File

@ -1,12 +1,15 @@
jc changelog
20220425 v1.18.8
- Fix quotation marks around asciified output with UnicodeEncodeError
20220425 v1.18.7
- Add git log command parser
- Add update-alternatives --query parser
- Add update-alternatives --get-selections parser
- Fix key/value and ini parsers to allow duplicate keys
- Fix yaml file parser for files including timestamp objects
- Fix UnicodeDecodeError on some systems where LANG=C is set and unicode
- Fix UnicodeEncodeError on some systems where LANG=C is set and unicode
characters are in the output
- Update xrandr parser: add a 'rotation' field
- Fix failing tests by moving template files

View File

@ -6,7 +6,7 @@ import importlib
from typing import Dict, List, Iterable, Union, Iterator
from jc import appdirs
__version__ = '1.18.7'
__version__ = '1.18.8'
parsers = [
'acpi',

View File

@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
setuptools.setup(
name='jc',
version='1.18.7',
version='1.18.8',
author='Kelly Brazil',
author_email='kellyjonbrazil@gmail.com',
description='Converts the output of popular command-line tools and file-types to JSON.',