mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
version bump
This commit is contained in:
@ -1,12 +1,15 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
|
20220425 v1.18.8
|
||||||
|
- Fix quotation marks around asciified output with UnicodeEncodeError
|
||||||
|
|
||||||
20220425 v1.18.7
|
20220425 v1.18.7
|
||||||
- Add git log command parser
|
- Add git log command parser
|
||||||
- Add update-alternatives --query parser
|
- Add update-alternatives --query parser
|
||||||
- Add update-alternatives --get-selections parser
|
- Add update-alternatives --get-selections parser
|
||||||
- Fix key/value and ini parsers to allow duplicate keys
|
- Fix key/value and ini parsers to allow duplicate keys
|
||||||
- Fix yaml file parser for files including timestamp objects
|
- 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
|
characters are in the output
|
||||||
- Update xrandr parser: add a 'rotation' field
|
- Update xrandr parser: add a 'rotation' field
|
||||||
- Fix failing tests by moving template files
|
- Fix failing tests by moving template files
|
||||||
|
@ -6,7 +6,7 @@ import importlib
|
|||||||
from typing import Dict, List, Iterable, Union, Iterator
|
from typing import Dict, List, Iterable, Union, Iterator
|
||||||
from jc import appdirs
|
from jc import appdirs
|
||||||
|
|
||||||
__version__ = '1.18.7'
|
__version__ = '1.18.8'
|
||||||
|
|
||||||
parsers = [
|
parsers = [
|
||||||
'acpi',
|
'acpi',
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='jc',
|
name='jc',
|
||||||
version='1.18.7',
|
version='1.18.8',
|
||||||
author='Kelly Brazil',
|
author='Kelly Brazil',
|
||||||
author_email='kellyjonbrazil@gmail.com',
|
author_email='kellyjonbrazil@gmail.com',
|
||||||
description='Converts the output of popular command-line tools and file-types to JSON.',
|
description='Converts the output of popular command-line tools and file-types to JSON.',
|
||||||
|
Reference in New Issue
Block a user