Skip to content

Commit

Permalink
updating version to 4.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Aug 14, 2020
1 parent 765dd59 commit a336c19
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ The latest version is available on [`pypi`](https://pypi.python.org/pypi), the P
It is also possible to download the latest archive from github

```sh
> curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.10.tar.gz | tar zx
> curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.11.tar.gz | tar zx

> cd exabgp-4.2.10
> cd exabgp-4.2.11
> ./sbin/exabgp --version
> ./sbin/exabgp --help

Expand All @@ -81,10 +81,10 @@ or to use git master
> ./bin/healthcheck --help
```

or change git to use any previous release (here 4.2.10)
or change git to use any previous release (here 4.2.11)

```sh
> git checkout 4.2.10
> git checkout 4.2.11
> ./sbin/exabgp --version
```

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ Without installation

::

curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.10.tar.gz | tar zx
./exabgp-4.2.10/sbin/exabgp --help
curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.11.tar.gz | tar zx
./exabgp-4.2.11/sbin/exabgp --help

Feedback and getting involved
=============================
Expand Down
8 changes: 4 additions & 4 deletions lib/exabgp/version.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import os

commit = "f3b06580"
release = "4.2.10"
commit = "765dd59f"
release = "4.2.11"
json = "4.0.1"
text = "4.0.1"
version = os.environ.get('EXABGP_VERSION',release)

# Do not change the first line as it is parsed by scripts

if __name__ == '__main__':
import sys
sys.stdout.write(version)
import sys
sys.stdout.write(version)

0 comments on commit a336c19

Please sign in to comment.