File tree 3 files changed +32
-1
lines changed
3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (C) 2019 Intel Corporation. All rights reserved.
3
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
+ */
5
+
6
+ /*
7
+ * version.h.in is a template file. version.h is a generated file.
8
+ * Please do not edit both files directly.
9
+ *
10
+ * Any changes to the version should be done in build-scripts/version.cmake.
11
+ *
12
+ * Continue to maintain the version.h for certain embedded platforms.
13
+ */
14
+
15
+ #ifndef _WAMR_VERSION_H_
16
+ #define _WAMR_VERSION_H_
17
+
18
+ /* clang-format off */
19
+ #define WAMR_VERSION_MAJOR 2
20
+ #define WAMR_VERSION_MINOR 2
21
+ #define WAMR_VERSION_PATCH 0
22
+ /* clang-format on */
23
+
24
+ #endif
Original file line number Diff line number Diff line change 8
8
* Please do not edit both files directly.
9
9
*
10
10
* Any changes to the version should be done in the version.cmake file.
11
+ *
12
+ * Continue to maintain the version.h for certain embedded platforms.
11
13
*/
12
14
13
15
#ifndef _WAMR_VERSION_H_
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ Once a release decision has been made:
23
23
24
24
- Create a PR that:
25
25
1 . Modifies * build-scripts/version.cmake* .
26
- 2 . Updates * RELEASE.md* .
26
+ 2 . Executes cmake configuration to update the version.
27
+ 3 . Updates * RELEASE_NOTES.md* .
28
+ - A checklist of the PR includes
29
+ - [ ] * build-scripts/version.cmake*
30
+ - [ ] * core/version.h*
31
+ - [ ] * RELEASE_NOTES.md*
27
32
- Once the PR is merged, create a new tag.
28
33
- Initiate the release process by triggering * the binary release processes* in * Actions* .
You can’t perform that action at this time.
0 commit comments