From 997438f2fa52b80d7c8c2e25006920c42376b784 Mon Sep 17 00:00:00 2001 From: bkersbergen Date: Tue, 21 Jun 2022 20:28:17 +0200 Subject: [PATCH] fix build by increasing version --- Cargo.toml | 2 +- docs/RELEASE-TAG.md | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e4a6e13..daf6191 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/docs/RELEASE-TAG.md b/docs/RELEASE-TAG.md index 8e77d4a..ef49bf1 100644 --- a/docs/RELEASE-TAG.md +++ b/docs/RELEASE-TAG.md @@ -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.. && 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 ```