Re: [dpdk-dev] [PATCH 1/2] devtools: fix version pattern for fix search

2021-06-14 Thread Christian Ehrhardt
On Sat, Jun 12, 2021 at 3:57 PM Xueming Li wrote: > > When scanning fixes from current(HEAD) branch, local tags were included > and reported as version. For example: > $ git tag --contains --merged > 20.11_backport_202010506 // user tag > v20.11 > v20.11.1 > > This patch matches DPDK of

[dpdk-dev] [PATCH 1/2] devtools: fix version pattern for fix search

2021-06-12 Thread Xueming Li
When scanning fixes from current(HEAD) branch, local tags were included and reported as version. For example: $ git tag --contains --merged 20.11_backport_202010506 // user tag v20.11 v20.11.1 This patch matches DPDK officail version pattern in search, selects the most early tag. Offici