Skip to content

Commit

Permalink
update release version to 0.17.1 (#3674)
Browse files Browse the repository at this point in the history
* update release version to 0.17.1

* fix bug.
  • Loading branch information
shankarseal authored Jun 25, 2024
1 parent 8682e77 commit 1f01400
Show file tree
Hide file tree
Showing 156 changed files with 156 additions and 156 deletions.
2 changes: 1 addition & 1 deletion installer/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SPDX-License-Identifier: MIT
<?define ProductVersion="022C44B5-8969-4B75-8DB0-73F98B1BD7DC"?>
<?define UpgradeCode="B6BCACB1-C872-4159-ABCB-43A50668056C"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:ui="http://schemas.microsoft.com/wix/UIExtension" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.17.0" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.17.1" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
<Package Description="eBPF for Windows" InstallerVersion="301" Compressed="yes" InstallScope="perMachine" Manufacturer="Microsoft" Platform="x64" />
<MajorUpgrade AllowSameVersionUpgrades="yes"
Disallow="yes" DisallowUpgradeErrorMessage="An older version of [ProductName] is already installed. Please remove it first."
Expand Down
2 changes: 1 addition & 1 deletion resource/ebpf_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#define EBPF_VERSION_MAJOR 0
#define EBPF_VERSION_MINOR 17
#define EBPF_VERSION_REVISION 0
#define EBPF_VERSION_REVISION 1

#define QUOTE(str) #str
#define EXPAND_AND_QUOTE(str) QUOTE(str)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/atomic_instruction_others_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/atomic_instruction_others_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/atomic_instruction_others_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bad_map_name_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bad_map_name_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bad_map_name_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_mt_tailcall_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -6256,7 +6256,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_mt_tailcall_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -6230,7 +6230,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_mt_tailcall_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -6391,7 +6391,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_ringbuf_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_ringbuf_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_ringbuf_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_tailcall_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_tailcall_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bindmonitor_tailcall_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bpf_call_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bpf_call_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bpf_call_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bpf_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bpf_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/bpf_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_count_connect4_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_count_connect4_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_count_connect4_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_count_connect6_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_count_connect6_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_count_connect6_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_mt_connect4_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_mt_connect4_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_mt_connect4_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_mt_connect6_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_mt_connect6_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_mt_connect6_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_sock_addr2_dll.c
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_sock_addr2_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/bpf2c_tests/expected/cgroup_sock_addr2_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ _get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 17;
version->revision = 0;
version->revision = 1;
}

static void
Expand Down
Loading

0 comments on commit 1f01400

Please sign in to comment.