File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2018 Jason Daniels
3
+ Copyright (c) 2018 Jason C. Daniels
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- GIT_VER_VERSION=" 0.0.1 -alpha"
2
+ GIT_VER_VERSION=" 0.0.2 -alpha+r2 "
3
3
set +ex
4
4
get_script_dir () {
5
5
SOURCE=" ${BASH_SOURCE[0]} "
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ To establish a version number the following steps take place:
24
24
3. The list is sorted highest to lowest and the highest value is chosen. Tag wisely so as not to break this feature.
25
25
26
26
If a suitable version is extracted from a tag it becomes the candidate version number. A candidate can be overridden when any of the following occur:
27
- 1. An APP_VEYOR_VERSION environment variable is set.
28
- 2. OR A VersionPrefix environment variable is set.
29
- 3. OR A Version environment variable is set.
30
- 4. OR The current branch name starts with release
27
+ 1. The current branch name starts with release (this overrides all other checks)
28
+ 2. OR An APP_VEYOR_VERSION environment variable is set.
29
+ 3. OR A VersionPrefix environment variable is set.
30
+ 4. OR A Version environment variable is set.
31
31
32
32
The contents of the environment variable are assumed to match the MAJOR.MINOR.PATCH format. Ensure that they do.
33
33
You can’t perform that action at this time.
0 commit comments