diff --git a/Cargo.lock b/Cargo.lock index e171f01cce..5ba63b3634 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -969,7 +969,7 @@ dependencies = [ [[package]] name = "fluvio-cluster" -version = "0.5.1" +version = "0.5.0" dependencies = [ "async-channel", "async-trait", @@ -1311,7 +1311,7 @@ dependencies = [ [[package]] name = "fluvio-spu" -version = "0.3.0" +version = "0.3.1" dependencies = [ "async-channel", "async-mutex", diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000000..5579f4f6c7 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,16 @@ +# Release process + +Bump up version `VERSION` file. + +## Release crates + +Find all crates that has been changed last release +``` +cargo workspaces changed +``` + +publish all crates + +## Kick off release + +Run Github action `release` \ No newline at end of file diff --git a/VERSION b/VERSION index f473bc3eae..fb67d6f2c8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.0-beta.1 +0.6.0-beta.2 \ No newline at end of file diff --git a/src/cluster/Cargo.toml b/src/cluster/Cargo.toml index 5846242c28..1dd7e32434 100644 --- a/src/cluster/Cargo.toml +++ b/src/cluster/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluvio-cluster" -version = "0.5.1" +version = "0.5.0" edition = "2018" license = "Apache-2.0" authors = ["Fluvio Contributors "] diff --git a/src/spu/Cargo.toml b/src/spu/Cargo.toml index b45667e0e5..e0e284e481 100644 --- a/src/spu/Cargo.toml +++ b/src/spu/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fluvio-spu" edition = "2018" -version = "0.3.0" +version = "0.3.1" authors = ["fluvio.io"] description = "Fluvio Stream Processing Unit" repository = "https://github.com/infinyon/fluvio"