Skip to content

Commit

Permalink
fix build by increasing version
Browse files Browse the repository at this point in the history
  • Loading branch information
bkersbergen committed Jun 21, 2022
1 parent 9ed1d77 commit 997438f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ categories = ["science"]
readme = "README.md"
repository = "https://github.com/bolcom/serenade/"
license = "Apache-2.0"
version = "0.3.0"
version = "0.3.1"
authors = ["submission@sigmod2021.org"]
edition = "2021"

Expand Down
11 changes: 6 additions & 5 deletions docs/RELEASE-TAG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ Create a New Tag & Release
===
For every new tag, the workflow at `.github/workflows/release.yml` creates a new release, with the source code and binaries for MacOS, Linux, and Windows.

If you wish to create a new release, just push a new git tag in the following format:
If you wish to create a new release, do the following:

First:
```
git tag v<MAJOR>.<MINOR>.<PATCH> && git push origin --tag
Increase the version number in the Cargo.toml file
```

For example:
then:
```
git tag v0.0.2 && git push origin --tag
git tag v0.3.1 && git push origin --tag
```

0 comments on commit 997438f

Please sign in to comment.