Skip to content

Commit

Permalink
release: merge pull request #1019 from svinota/svinota-pre-0.7.3
Browse files Browse the repository at this point in the history
version 0.7.3

Bug-Url: #1019
  • Loading branch information
svinota committed Sep 9, 2022
2 parents 0f39e8a + 7d69bad commit f0d5b23
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

* 0.7.3
* nlsocket: CompileContext support
* nlsocket: support for per request parsers (see `IPRoute.get_default_routes()`)
* generic: added support for dumping policies <https://github.com/svinota/pyroute2/pull/981>
* ndb: changed API for reports
* conntrack: fix TCP states <https://github.com/svinota/pyroute2/pull/991>
* ipmock: new component (IPMock) for mock tests
* thermal: update
* ci: `nlm_generator = True` -- force using generators in the CI
* 0.7.2
* iproute: fix neighbours dump <https://github.com/svinota/pyroute2/issues/962>
* iproute: fix rule add <https://github.com/svinota/pyroute2/issues/964>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.2
0.7.3
4 changes: 2 additions & 2 deletions docs/arch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ by the library:
pyroute2.netlink.event.EventSocket
pyroute2.netlink.event.acpi_event.AcpiEventSocket
pyroute2.netlink.event.dquot.DQuotSocket
pyroute2.netlink.event.thermal_event.ThermalEventSocket
pyroute2.netlink.event.thermal.ThermalEventSocket
pyroute2.netlink.devlink.DevlinkSocket
pyroute2.netlink.diag.DiagSocket
pyroute2.remote.RemoteIPRoute
Expand Down Expand Up @@ -165,7 +165,7 @@ The messages hierarchy:
pyroute2.netlink.diag.unix_diag_msg
pyroute2.netlink.event.acpi_event.acpimsg
pyroute2.netlink.event.dquot.dquotmsg
pyroute2.netlink.event.thermal_event.thermal_msg
pyroute2.netlink.event.thermal.thermal_msg
pyroute2.netlink.taskstats.taskstatsmsg
pyroute2.netlink.taskstats.tcmd
pyroute2.netlink.generic.ethtool.ethtool_strset_msg
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ def docs(session):
cwd = os.path.abspath(os.getcwd())
# man pages
session.chdir(f'{tmpdir}/docs/')
session.run('make', 'man', external=True)
session.run('make', 'man', 'SPHINXOPTS="-W"', external=True)
session.run('cp', '-a', 'man', f'{cwd}/docs/', external=True)
# html
session.chdir(f'{tmpdir}/docs/')
session.run('make', 'html', external=True)
session.run('make', 'html', 'SPHINXOPTS="-W"', external=True)
session.run('cp', '-a', 'html', f'{cwd}/docs/', external=True)
session.run('make', 'doctest', external=True)
session.chdir(cwd)
Expand Down

0 comments on commit f0d5b23

Please sign in to comment.