diff -Nru exabgp-4.2.7/CHANGELOG.rst exabgp-4.2.8/CHANGELOG.rst --- exabgp-4.2.7/CHANGELOG.rst 2020-05-18 20:58:57.000000000 +0000 +++ exabgp-4.2.8/CHANGELOG.rst 2020-05-25 10:17:19.000000000 +0000 @@ -3,6 +3,9 @@ - minor : increase on risk of code breakage during a major release - bug : increase on bug or incremental changes +Version 4.2.8: + * Fix: restore python -m exabgp + Version 4.2.7: * Feature: logging parsing in debug mode will now print the JSON of updates * Fix: issue during restart diff -Nru exabgp-4.2.7/debian/changelog exabgp-4.2.8/debian/changelog --- exabgp-4.2.7/debian/changelog 2020-05-20 16:35:19.000000000 +0000 +++ exabgp-4.2.8/debian/changelog 2020-05-25 12:43:37.000000000 +0000 @@ -1,3 +1,9 @@ +exabgp (4.2.8-1) unstable; urgency=medium + + * New upstream release. + + -- Vincent Bernat Mon, 25 May 2020 14:43:37 +0200 + exabgp (4.2.7-1) unstable; urgency=medium * New upstream release. diff -Nru exabgp-4.2.7/lib/exabgp/__main__.py exabgp-4.2.8/lib/exabgp/__main__.py --- exabgp-4.2.7/lib/exabgp/__main__.py 1970-01-01 00:00:00.000000000 +0000 +++ exabgp-4.2.8/lib/exabgp/__main__.py 2020-05-25 10:17:19.000000000 +0000 @@ -0,0 +1,4 @@ +from exabgp.application.main import main + +if __name__ == '__main__': + main() \ No newline at end of file diff -Nru exabgp-4.2.7/lib/exabgp/version.py exabgp-4.2.8/lib/exabgp/version.py --- exabgp-4.2.7/lib/exabgp/version.py 2020-05-18 20:58:57.000000000 +0000 +++ exabgp-4.2.8/lib/exabgp/version.py 2020-05-25 10:17:19.000000000 +0000 @@ -1,7 +1,7 @@ import os -commit = "beaf4104" -release = "4.2.7" +commit = "5344713b" +release = "4.2.8" json = "4.0.1" text = "4.0.1" version = os.environ.get('EXABGP_VERSION',release) diff -Nru exabgp-4.2.7/README.md exabgp-4.2.8/README.md --- exabgp-4.2.7/README.md 2020-05-18 20:58:57.000000000 +0000 +++ exabgp-4.2.8/README.md 2020-05-25 10:17:19.000000000 +0000 @@ -56,9 +56,9 @@ It is also possible to download the latest archive from github ```sh -> curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.7.tar.gz | tar zx +> curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.8.tar.gz | tar zx -> cd exabgp-4.2.7 +> cd exabgp-4.2.8 > ./sbin/exabgp --version > ./sbin/exabgp --help @@ -81,10 +81,10 @@ > ./bin/healthcheck --help ``` -or change git to use any previous release (here 4.2.7) +or change git to use any previous release (here 4.2.8) ```sh -> git checkout 4.2.7 +> git checkout 4.2.8 > ./sbin/exabgp --version ``` diff -Nru exabgp-4.2.7/README.rst exabgp-4.2.8/README.rst --- exabgp-4.2.7/README.rst 2020-05-18 20:58:57.000000000 +0000 +++ exabgp-4.2.8/README.rst 2020-05-25 10:17:19.000000000 +0000 @@ -55,8 +55,8 @@ :: - curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.7.tar.gz | tar zx - ./exabgp-4.2.7/sbin/exabgp --help + curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.8.tar.gz | tar zx + ./exabgp-4.2.8/sbin/exabgp --help Feedback and getting involved =============================