Skip to content

Commit

Permalink
Update src to v0.10.0 (#2741)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrevi authored Aug 8, 2023
1 parent 98b3eb8 commit 7c050eb
Show file tree
Hide file tree
Showing 137 changed files with 392 additions and 392 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.9.0" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.10.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 9
#define EBPF_VERSION_MINOR 10
#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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 = 9;
version->minor = 10;
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 @@ -2021,7 +2021,7 @@ static void
_get_version(_Out_ bpf2c_version_t* version)
{
version->major = 0;
version->minor = 9;
version->minor = 10;
version->revision = 0;
}

Expand Down
Loading

0 comments on commit 7c050eb

Please sign in to comment.