Skip to content

Commit

Permalink
Readme (#1044)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baltoli authored May 7, 2024
1 parent feaf33d commit c2e0804
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,10 @@ the [`docs/`](docs) directory.

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

## Git Workflow

PRs to this repository should target the `develop` branch, rather than `master`.
When a PR is merged to `develop`, a version update and release happens
automatically in CI.

[K]: https://github.com/runtimeverification/k
2 changes: 1 addition & 1 deletion package/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version_file="package/version"

version_bump() {
local version release_commit version_major version_minor version_patch new_version current_version current_version_major current_version_minor current_version_patch
version="$1" ; shift
version="$(cat ${version_file})" ; shift
version_major="$(echo ${version} | cut --delimiter '.' --field 1)"
version_minor="$(echo ${version} | cut --delimiter '.' --field 2)"
version_patch="$(echo ${version} | cut --delimiter '.' --field 3)"
Expand Down

0 comments on commit c2e0804

Please sign in to comment.