Skip to content

Commit c2e0804

Browse files
authored
Readme (#1044)
1 parent feaf33d commit c2e0804

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,10 @@ the [`docs/`](docs) directory.
1010

1111
For developer setup instructions, refer to [INSTALL.md](INSTALL.md).
1212

13+
## Git Workflow
14+
15+
PRs to this repository should target the `develop` branch, rather than `master`.
16+
When a PR is merged to `develop`, a version update and release happens
17+
automatically in CI.
18+
1319
[K]: https://github.com/runtimeverification/k

package/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version_file="package/version"
99

1010
version_bump() {
1111
local version release_commit version_major version_minor version_patch new_version current_version current_version_major current_version_minor current_version_patch
12-
version="$1" ; shift
12+
version="$(cat ${version_file})" ; shift
1313
version_major="$(echo ${version} | cut --delimiter '.' --field 1)"
1414
version_minor="$(echo ${version} | cut --delimiter '.' --field 2)"
1515
version_patch="$(echo ${version} | cut --delimiter '.' --field 3)"

0 commit comments

Comments
 (0)