git-rev-label 2.26.24 → 2.27.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/git-rev-label +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,3 +124,12 @@ This is super useful when you want store some information about current build in
|
|
|
124
124
|
|
|
125
125
|
Shell script creates `build_info.h` C header file with information about repository: branch, tags, timestamps, etc.
|
|
126
126
|
Include this header to access build information from code.
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
-------------------------
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
## ToDo
|
|
133
|
+
- move to dedicated project group gitlab.com/git-rev-label
|
|
134
|
+
- move artifacts/* branches family to dedicated repo gitlab.com/git-rev-label/releases
|
|
135
|
+
- use also releases page of main development repo, keep it in sync with releases-repo
|
package/git-rev-label
CHANGED
|
@@ -21,8 +21,8 @@ shopt -s inherit_errexit
|
|
|
21
21
|
shopt -s lastpipe
|
|
22
22
|
shopt -s expand_aliases
|
|
23
23
|
|
|
24
|
-
VERSION=master-
|
|
25
|
-
VERSION_NPM=2.
|
|
24
|
+
VERSION=master-c27-g1eb4c9d-b25
|
|
25
|
+
VERSION_NPM=2.27.25
|
|
26
26
|
|
|
27
27
|
## todo maybe use utils.bash from autorsync
|
|
28
28
|
function echomsg { echo $'\e[1;37m'"$@"$'\e[0m'; }
|
package/package.json
CHANGED