diff --git a/CHANGELOG b/CHANGELOG index 3a9c49f1..8958af51 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,16 @@ jc changelog 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 20210707 v1.15.7 diff --git a/MANIFEST.in b/MANIFEST.in index 30c2d7ba..cbed6f59 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include jc/man/jc.1.gz +include man/jc.1 include CHANGELOG diff --git a/jc/__init__.py b/jc/__init__.py index a79d1d71..a1f56da0 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -86,4 +86,4 @@ Module Example: """ name = 'jc' -__version__ = '1.15.7' +__version__ = '1.16.0' diff --git a/mangen.py b/mangen.py index f6906abc..aaa9759c 100755 --- a/mangen.py +++ b/mangen.py @@ -22,4 +22,4 @@ with open('man/jc.1', 'rb') as f_in: shutil.copyfile('man/jc.1.gz', 'jc/man/jc.1.gz') -os.remove('man/jc.1') +# os.remove('man/jc.1') diff --git a/setup.py b/setup.py index e95facef..02c3b6bc 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.15.7', + version='1.16.0', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',