Skip to content

Commit

Permalink
Bump version to v1.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: Toke Høiland-Jørgensen <[email protected]>
  • Loading branch information
tohojo committed Jan 9, 2025
1 parent 2bea803 commit 6f19b7d
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 20 deletions.
8 changes: 4 additions & 4 deletions lib/libxdp/libxdp.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "libxdp" "3" "June 29, 2023" "v1.4.3" "libxdp - library for loading XDP programs"
.TH "libxdp" "3" "December 9, 2024" "v1.5.0" "libxdp - library for loading XDP programs"

.SH "NAME"
libxdp \- library for attaching XDP programs and using AF_XDP sockets
Expand Down Expand Up @@ -307,9 +307,9 @@ way of umem creation.
.RS
.nf
\fCstruct xsk_umem *xsk_umem__create_opts(void *umem_area,
struct xsk_ring_prod *fill,
struct xsk_ring_cons *comp,
struct xsk_umem_opts *opts);
struct xsk_ring_prod *fill,
struct xsk_ring_cons *comp,
struct xsk_umem_opts *opts);
int xsk_umem__create(struct xsk_umem **umem,
void *umem_area, __u64 size,
struct xsk_ring_prod *fill,
Expand Down
12 changes: 8 additions & 4 deletions packaging/rpm/xdp-tools.spec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Name: xdp-tools
Version: 1.4.3
Version: 1.5.0
Release: 1%{?dist}
Summary: Utilities and example programs for use with XDP
%global _soversion 1.4.0
%global _soversion 1.5.0

License: GPL-2.0-only
URL: https://github.com/xdp-project/%{name}
Expand Down Expand Up @@ -91,12 +91,13 @@ export HDRDIR='%{_includedir}/xdp'
make install V=1

%files
%{_sbindir}/xdp-bench
%{_sbindir}/xdp-filter
%{_sbindir}/xdp-forward
%{_sbindir}/xdp-loader
%{_sbindir}/xdpdump
%{_sbindir}/xdp-bench
%{_sbindir}/xdp-monitor
%{_sbindir}/xdp-trafficgen
%{_sbindir}/xdpdump
%{_mandir}/man8/*
%{_libdir}/bpf/xdpfilt_*.o
%{_libdir}/bpf/xdpdump_*.o
Expand All @@ -120,6 +121,9 @@ make install V=1
%{_libdir}/pkgconfig/libxdp.pc

%changelog
* Thu Jan 9 2025 Toke Høiland-Jørgensen <[email protected]> 1.5.0-1
- Upstream version bump

* Tue Aug 6 2024 Toke Høiland-Jørgensen <[email protected]> 1.4.3-1
- Upstream version bump

Expand Down
2 changes: 1 addition & 1 deletion version.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TOOLS_VERSION := "1.4.3"
TOOLS_VERSION := "1.5.0"

# Conditionally defined make target makes it possible to print the version
# defined above by running 'make -f version.mk'
Expand Down
10 changes: 5 additions & 5 deletions xdp-bench/xdp-bench.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "xdp-bench" "8" "APRIL 2, 2024" "V1.4.3" "A simple XDP benchmarking tool"
.TH "xdp-bench" "8" "NOVEMBER 19, 2024" "V1.5.0" "A simple XDP benchmarking tool"

.SH "NAME"
XDP-bench \- a simple XDP benchmarking tool
Expand Down Expand Up @@ -97,7 +97,7 @@ The following modes are available:

.RS
.nf
\fCdpa - Use traditional Direct Packet Access from the XDP program
\fCdpa - Use traditional Direct Packet Access from the XDP program
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
\fP
.fi
Expand Down Expand Up @@ -195,7 +195,7 @@ The following modes are available:

.RS
.nf
\fCdpa - Use traditional Direct Packet Access from the XDP program
\fCdpa - Use traditional Direct Packet Access from the XDP program
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
\fP
.fi
Expand Down Expand Up @@ -298,7 +298,7 @@ The following modes are available:

.RS
.nf
\fCdpa - Use traditional Direct Packet Access from the XDP program
\fCdpa - Use traditional Direct Packet Access from the XDP program
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
\fP
.fi
Expand Down Expand Up @@ -375,7 +375,7 @@ The following modes are available:

.RS
.nf
\fCdpa - Use traditional Direct Packet Access from the XDP program
\fCdpa - Use traditional Direct Packet Access from the XDP program
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
\fP
.fi
Expand Down
2 changes: 1 addition & 1 deletion xdp-dump/xdpdump.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "xdpdump" "8" "JANUARY 13, 2021" "V1.4.3" "a simple tcpdump like tool for capturing packets at the XDP layer"
.TH "xdpdump" "8" "JANUARY 13, 2021" "V1.5.0" "a simple tcpdump like tool for capturing packets at the XDP layer"

.SH "NAME"
xdpdump \- a simple tcpdump like tool for capturing packets at the XDP layer
Expand Down
2 changes: 1 addition & 1 deletion xdp-filter/xdp-filter.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "xdp-filter" "8" "SEPTEMBER 5, 2022" "V1.4.3" "A simple XDP-powered packet filter"
.TH "xdp-filter" "8" "SEPTEMBER 5, 2022" "V1.5.0" "A simple XDP-powered packet filter"

.SH "NAME"
xdp-filter \- a simple XDP-powered packet filter
Expand Down
2 changes: 1 addition & 1 deletion xdp-forward/xdp-forward.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "xdp-forward" "8" "OCTOBER 10, 2024" "V1.4.3" "XDP program loader"
.TH "xdp-forward" "8" "OCTOBER 11, 2024" "V1.5.0" "XDP program loader"

.SH "NAME"
xdp-forward \- the XDP forwarding plane
Expand Down
2 changes: 1 addition & 1 deletion xdp-loader/xdp-loader.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "xdp-loader" "8" "JUNE 8, 2023" "V1.4.3" "XDP program loader"
.TH "xdp-loader" "8" "SEPTEMBER 12, 2024" "V1.5.0" "XDP program loader"

.SH "NAME"
xdp-loader \- an XDP program loader
Expand Down
2 changes: 1 addition & 1 deletion xdp-monitor/xdp-monitor.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "xdp-monitor" "8" "DECEMBER 12, 2022" "V1.4.3" "A simple XDP monitoring tool"
.TH "xdp-monitor" "8" "DECEMBER 12, 2022" "V1.5.0" "A simple XDP monitoring tool"

.SH "NAME"
XDP-monitor \- a simple BPF-powered XDP monitoring tool
Expand Down
2 changes: 1 addition & 1 deletion xdp-trafficgen/xdp-trafficgen.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "xdp-trafficgen" "8" "JULY 22, 2024" "V1.4.3" "An XDP-based traffic generator"
.TH "xdp-trafficgen" "8" "JANUARY 9, 2025" "V1.5.0" "An XDP-based traffic generator"

.SH "NAME"
XDP-trafficgen \- an XDP-based traffic generator
Expand Down

0 comments on commit 6f19b7d

Please sign in to comment.