mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
version bump and deprecate /man/jc.1.gz and /jc/man/jc.1.gz
This commit is contained in:
10
CHANGELOG
10
CHANGELOG
@ -1,6 +1,16 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
202107xx v1.16.0 (in progress)
|
202107xx v1.16.0 (in progress)
|
||||||
|
- Note to Package Maintainers:
|
||||||
|
TLDR: `/man/jc.1.gz` and `/jc/man/jc.1.gz` are deprecated and only `/man/jc.1` should be used.
|
||||||
|
|
||||||
|
The Man page in the PyPi source packages will be moving from `/jc/man/jc.1.gz` to `/man/jc.1`
|
||||||
|
in version 1.17.0. For now the Man pages will be available in both locations, but be aware that
|
||||||
|
the Man page at `/jc/man/jc.1.gz` is now considered deprecated.
|
||||||
|
|
||||||
|
Also, starting in v1.17.0, the Man page will no longer be compressed in the source package,
|
||||||
|
therefore `/man/jc.1.gz` should also be considered deprecated and will no longer be available
|
||||||
|
after v1.17.0. Please use `/man/jc.1` and compress downstream if you would like.
|
||||||
- Include CHANGELOG in source distribution
|
- Include CHANGELOG in source distribution
|
||||||
|
|
||||||
20210707 v1.15.7
|
20210707 v1.15.7
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
include jc/man/jc.1.gz
|
include jc/man/jc.1.gz
|
||||||
|
include man/jc.1
|
||||||
include CHANGELOG
|
include CHANGELOG
|
||||||
|
@ -86,4 +86,4 @@ Module Example:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
name = 'jc'
|
name = 'jc'
|
||||||
__version__ = '1.15.7'
|
__version__ = '1.16.0'
|
||||||
|
@ -22,4 +22,4 @@ with open('man/jc.1', 'rb') as f_in:
|
|||||||
|
|
||||||
shutil.copyfile('man/jc.1.gz', 'jc/man/jc.1.gz')
|
shutil.copyfile('man/jc.1.gz', 'jc/man/jc.1.gz')
|
||||||
|
|
||||||
os.remove('man/jc.1')
|
# os.remove('man/jc.1')
|
||||||
|
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.15.7',
|
version='1.16.0',
|
||||||
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