Skip to content

Commit ae35047

Browse files
Merge pull request #8 from jason-c-daniels/bugfix/bump-commands-not-working
Fixed numerous issues...
2 parents a08a664 + b83f9fd commit ae35047

12 files changed

+54
-28
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
name: Bug report
33
about: Create a bug report to help drive improvements
44

src/.git-ver/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.1.2-alpha
1+
v0.1.3-alpha

src/.git-ver/VERSION.REPO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.2
1+
0.1.3

src/.git-ver/git-ver-get-major

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/bash
22
set -e
3-
get_major "$@"
3+
# Intentional shellcheck suppressions. I found that they goofed up the execution of the code
4+
# shellcheck disable=SC2086
5+
# shellcheck disable=SC2048
6+
get_major $*

src/.git-ver/git-ver-get-minor

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/bash
22
set -e
3-
get_minor "$@"
3+
# Intentional shellcheck suppressions. I found that they goofed up the execution of the code
4+
# shellcheck disable=SC2086
5+
# shellcheck disable=SC2048
6+
get_minor $*

src/.git-ver/git-ver-get-patch

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/bash
22
set -e
3-
get_patch "$@"
3+
# Intentional shellcheck suppressions. I found that they goofed up the execution of the code
4+
# shellcheck disable=SC2086
5+
# shellcheck disable=SC2048
6+
get_patch $*

src/.git-ver/git-ver-get-prefix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/bash
22
set -e
3-
get_prefix "$@"
3+
# Intentional shellcheck suppressions. I found that they goofed up the execution of the code
4+
# shellcheck disable=SC2086
5+
# shellcheck disable=SC2048
6+
get_prefix $*

src/.git-ver/git-ver-get-repo-root

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/bash
22
set -e
3-
get_repo_root "$@"
3+
# Intentional shellcheck suppressions. I found that they goofed up the execution of the code
4+
# shellcheck disable=SC2086
5+
# shellcheck disable=SC2048
6+
get_repo_root $*

src/.git-ver/git-ver-get-semver

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/bash
22
set -e
3-
get_semver "$@"
3+
# Intentional shellcheck suppressions. I found that they goofed up the execution of the code
4+
# shellcheck disable=SC2086
5+
# shellcheck disable=SC2048
6+
get_semver $*

src/.git-ver/git-ver-get-suffix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/bash
22
set -e
3-
get_suffix "$@"
3+
# Intentional shellcheck suppressions. I found that they goofed up the execution of the code
4+
# shellcheck disable=SC2086
5+
# shellcheck disable=SC2048
6+
get_suffix $*

0 commit comments

Comments
 (0)