Skip to content

Commit

Permalink
p# This is a combination of 2 commits.
Browse files Browse the repository at this point in the history
update release version to 0.16.0
  • Loading branch information
shankarseal committed Apr 19, 2024
1 parent 4b40f9f commit 6be804a
Show file tree
Hide file tree
Showing 151 changed files with 152 additions and 152 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ jobs:
pre_test: .\setup_ebpf_cicd_tests.ps1 -KmTracing $true -KmTraceType "file" -TestMode "Regression" -RegressionArtifactsVersion "0.15.1"
test_command: .\execute_ebpf_cicd_tests.ps1 -TestMode "Regression"
post_test: .\cleanup_ebpf_cicd_tests.ps1 -KmTracing $true
name: driver_ws2022
name: regression_driver_ws2022
build_artifact: Build-x64
environment: ebpf_cicd_tests_ws2022
# driver test copies dumps to testlog folder.
Expand Down
4 changes: 2 additions & 2 deletions docs/ReleaseProcess.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ the [Release Branch Validation](ReleaseProcess.md#release-branch-validation).
```

1. Verify all the changes then commit all in the working branch.
>NOTE: The formatting rules may complain about the formatting of the generated `.c` files from the script above. In this case, override them with the
following (so they'll work with the `bpf2c_tests` verifying their content):
>NOTE: The formatting rules may complain about the formatting of the generated `.c` files from the script above. In this case,
override them with the following (so they'll work with the `bpf2c_tests` verifying their content):
>```bash
>git commit --no-verify -a -m "update release version to X.Y.Z".
>```
Expand Down
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.15.0" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.16.0" 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 @@ -2,7 +2,7 @@
// SPDX-License-Identifier: MIT

#define EBPF_VERSION_MAJOR 0
#define EBPF_VERSION_MINOR 15
#define EBPF_VERSION_MINOR 16
#define EBPF_VERSION_REVISION 0

#define QUOTE(str) #str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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

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

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 @@ -151,7 +151,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -125,7 +125,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -286,7 +286,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -178,7 +178,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -152,7 +152,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -313,7 +313,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -572,7 +572,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -6191,7 +6191,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -6165,7 +6165,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -6326,7 +6326,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -546,7 +546,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -182,7 +182,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -156,7 +156,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -317,7 +317,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -707,7 +707,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -783,7 +783,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -757,7 +757,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -918,7 +918,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -178,7 +178,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -152,7 +152,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -313,7 +313,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -109,7 +109,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -83,7 +83,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -244,7 +244,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -251,7 +251,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -225,7 +225,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -386,7 +386,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -251,7 +251,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -225,7 +225,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -386,7 +386,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -190,7 +190,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -164,7 +164,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -325,7 +325,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -190,7 +190,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -164,7 +164,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -325,7 +325,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

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 @@ -932,7 +932,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 15;
version->minor = 16;
version->revision = 0;
}

Expand Down
Loading

0 comments on commit 6be804a

Please sign in to comment.