Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Interested? [Read the documentation](https://netlab.tools) (also available on [G

## Releases

The latest release is [release 26.03](https://github.com/ipspace/netlab/releases/tag/release_26.03). It should be pretty stable, but if you encounter bugs, please report them as [GitHub issues](https://github.com/ipspace/netlab/issues/new/choose) and use [release 26.02](https://github.com/ipspace/netlab/releases/tag/release_26.02).
The latest release is [release 26.04](https://github.com/ipspace/netlab/releases/tag/release_26.04). It should be pretty stable, but if you encounter bugs, please report them as [GitHub issues](https://github.com/ipspace/netlab/issues/new/choose) and use [release 26.03](https://github.com/ipspace/netlab/releases/tag/release_26.03).

<!--
or [1.8.4-post2](https://github.com/ipspace/netlab/releases/tag/release_1.8.4-post2).
Expand Down
4 changes: 4 additions & 0 deletions docs/release/26.04.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* The new [**bgp.advertise**](bgp-advertise-prefix) node attribute allows you to advertise networks in the IP routing table into BGP. It’s supported on most platforms.
* The **bgp.originate** attribute is now [dual-stack and VRF-aware](bgp-advertise-prefix), allowing you to originate IPv4 and IPv6 prefixes into per-VRF BGP instances.
* Static routes (including VRF and discard routes) are now supported on **Nexus OS**, **Nokia SR OS**, **Nokia SR Linux**, and **OpenBSD**.
* **FortiOS** now supports static routing with discard routes (by [Aleksey Popov](https://github.com/a-v-popov)).
* **EVPN/VXLAN-over-IPv6** is now supported on **FRRouting**.
* **BIRD** now supports [OSPF area parameters](plugin-ospf-areas).
* **Junos** now supports BGP confederations and [route import](routing_import) into global and VRF BGP instances.
Expand All @@ -37,6 +38,9 @@ FRRouting:
* EVPN/VXLAN-over-IPv6
* Upgraded to release 10.6.0

FortiOS:
* Static routing with discard routes

Junos:
* BGP confederations
* Route import into global and VRF BGP instances
Expand Down
2 changes: 1 addition & 1 deletion legacy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

sys.path.append('..')

version="26.03"
version="26.04"

long_description = (Path(__file__).parent / "README.md").read_text()

Expand Down
2 changes: 1 addition & 1 deletion netsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

__version__ = "26.03"
__version__ = "26.04"

abort = False

Expand Down
Loading