The changelog will be printed as-is, with original grammar. So, you can redirect it into a file to render it then with an external tool:
bash
dephell package changelog pytest > pytest_changelog.rst
The current implementation works for 80% cases. The changelog must be in one file and uploaded in the GitHub repository of the project.
See also
1. [dephell package bug](cmd-package-bug) to find bugtracker for a package.
1. [dephell package show](cmd-package-show) to get information about package.
1. [dephell package search](cmd-package-search) to search packages on [PyPI](https://pypi.org/).
dephell package releases
Show available releases of package.
bash
dephell package releases textdistance
[
{
"date": "2019-03-18",
"python": "*",
"version": "4.1.2"
},
...
]
[Filter](filters) only versions:
bash
dephell package releases --filter=".version" textdistance
[
"4.1.2",
"4.1.1",
"4.1.0",
"4.0.0",
"3.1.0",
...
]
Show 10 latest releases from git repository:
bash
$ dephell package releases --filter=:10 git+https://github.com/orsinium/deal.gitegg=deal
[
{
"date": "2018-02-04",
"python": "*",
"version": "1.1.0"
},
...
]
Conda
Show releases on [Anaconda Cloud](https://docs.anaconda.com/anaconda-cloud/):
bash
$ dephell package releases --repo=conda textdistance
[
{
"date": "2019-03-13",
"python": "*",
"version": "4.1.0"
},
...
]
See also
1. [How DepHell choose Python environment](python-lookup).
1. [How to filter commands JSON output](filters).
1. [dephell package search](cmd-package-search) to search packages on [PyPI](https://pypi.org/).
1. [dephell package show](cmd-package-list) to show information about package.
1. [dephell package install](cmd-package-install) to install package.