Skip to content

Commit 5b465a3

Browse files
committed
Merged PR 11486801: Update version to 0.19.1
update version to 0.19.1
1 parent 69bd402 commit 5b465a3

File tree

167 files changed

+167
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+167
-167
lines changed

installer/Product.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SPDX-License-Identifier: MIT
66
<?define ProductVersion="022C44B5-8969-4B75-8DB0-73F98B1BD7DC"?>
77
<?define UpgradeCode="B6BCACB1-C872-4159-ABCB-43A50668056C"?>
88
<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">
9-
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.19.0" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
9+
<Product Id="$(var.ProductVersion)" Name="eBPF for Windows" Language="1033" Version="0.19.1" Manufacturer="Microsoft" UpgradeCode="$(var.UpgradeCode)">
1010
<Package Description="eBPF for Windows" InstallerVersion="301" Compressed="yes" InstallScope="perMachine" Manufacturer="Microsoft" Platform="x64" />
1111
<MajorUpgrade AllowSameVersionUpgrades="yes"
1212
Disallow="yes" DisallowUpgradeErrorMessage="An older version of [ProductName] is already installed. Please remove it first."

resource/ebpf_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#define EBPF_VERSION_MAJOR 0
55
#define EBPF_VERSION_MINOR 19
6-
#define EBPF_VERSION_REVISION 0
6+
#define EBPF_VERSION_REVISION 1
77

88
#define QUOTE(str) #str
99
#define EXPAND_AND_QUOTE(str) QUOTE(str)

tests/bpf2c_tests/expected/atomic_instruction_fetch_add_dll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ _get_version(_Out_ bpf2c_version_t* version)
181181
{
182182
version->major = 0;
183183
version->minor = 19;
184-
version->revision = 0;
184+
version->revision = 1;
185185
}
186186

187187
static void

tests/bpf2c_tests/expected/atomic_instruction_fetch_add_raw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ _get_version(_Out_ bpf2c_version_t* version)
155155
{
156156
version->major = 0;
157157
version->minor = 19;
158-
version->revision = 0;
158+
version->revision = 1;
159159
}
160160

161161
static void

tests/bpf2c_tests/expected/atomic_instruction_fetch_add_sys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ _get_version(_Out_ bpf2c_version_t* version)
316316
{
317317
version->major = 0;
318318
version->minor = 19;
319-
version->revision = 0;
319+
version->revision = 1;
320320
}
321321

322322
static void

tests/bpf2c_tests/expected/atomic_instruction_others_dll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ _get_version(_Out_ bpf2c_version_t* version)
152152
{
153153
version->major = 0;
154154
version->minor = 19;
155-
version->revision = 0;
155+
version->revision = 1;
156156
}
157157

158158
static void

tests/bpf2c_tests/expected/atomic_instruction_others_raw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ _get_version(_Out_ bpf2c_version_t* version)
126126
{
127127
version->major = 0;
128128
version->minor = 19;
129-
version->revision = 0;
129+
version->revision = 1;
130130
}
131131

132132
static void

tests/bpf2c_tests/expected/atomic_instruction_others_sys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ _get_version(_Out_ bpf2c_version_t* version)
287287
{
288288
version->major = 0;
289289
version->minor = 19;
290-
version->revision = 0;
290+
version->revision = 1;
291291
}
292292

293293
static void

tests/bpf2c_tests/expected/bad_map_name_dll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ _get_version(_Out_ bpf2c_version_t* version)
181181
{
182182
version->major = 0;
183183
version->minor = 19;
184-
version->revision = 0;
184+
version->revision = 1;
185185
}
186186

187187
static void

tests/bpf2c_tests/expected/bad_map_name_raw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ _get_version(_Out_ bpf2c_version_t* version)
155155
{
156156
version->major = 0;
157157
version->minor = 19;
158-
version->revision = 0;
158+
version->revision = 1;
159159
}
160160

161161
static void

0 commit comments

Comments
 (0)