Skip to content

Commit 73f1fe8

Browse files
committed
change for 4.2.24 release
1 parent 167f11d commit 73f1fe8

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ Version explained:
33
- minor : increase on risk of code breakage during a major release
44
- bug : increase on bug or incremental changes
55

6+
Version 4.2.25
7+
68
Version 4.2.24
9+
* Fix: remove unused vendored code breaking 4.2.23
710

811
Version 4.2.23
912
* Fix: update doctopt to master to fix issues with python3.13

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ The latest version is available on [`pypi`](https://pypi.python.org/pypi), the P
5656
It is also possible to download the latest archive from github
5757

5858
```sh
59-
> curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.23.tar.gz | tar zx
59+
> curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.24.tar.gz | tar zx
6060

61-
> cd exabgp-4.2.23
61+
> cd exabgp-4.2.24
6262
> ./sbin/exabgp --version
6363
> ./sbin/exabgp --help
6464

@@ -81,10 +81,10 @@ or to use git master
8181
> ./bin/healthcheck --help
8282
```
8383

84-
or change git to use any previous release (here 4.2.23)
84+
or change git to use any previous release (here 4.2.24)
8585

8686
```sh
87-
> git checkout 4.2.23
87+
> git checkout 4.2.24
8888
> ./sbin/exabgp --version
8989
```
9090

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Without installation
5555

5656
::
5757

58-
curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.23.tar.gz | tar zx
59-
./exabgp-4.2.23/sbin/exabgp --help
58+
curl -L https://github.com/Exa-Networks/exabgp/archive/4.2.24.tar.gz | tar zx
59+
./exabgp-4.2.24/sbin/exabgp --help
6060

6161
Feedback and getting involved
6262
=============================

lib/exabgp/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

33
commit = "5913d818"
4-
release = "4.2.23"
4+
release = "4.2.24"
55
json = "4.0.1"
66
text = "4.0.1"
77
version = os.environ.get('EXABGP_VERSION',release)

0 commit comments

Comments
 (0)