1
0
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:
Kelly Brazil
2021-07-19 12:04:25 -07:00
parent 2732cd175c
commit 26ea4d47b3
5 changed files with 14 additions and 3 deletions

View File

@ -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

View File

@ -1,2 +1,3 @@
include jc/man/jc.1.gz include jc/man/jc.1.gz
include man/jc.1
include CHANGELOG include CHANGELOG

View File

@ -86,4 +86,4 @@ Module Example:
""" """
name = 'jc' name = 'jc'
__version__ = '1.15.7' __version__ = '1.16.0'

View File

@ -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')

View File

@ -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.',