From 0fd883c09fea5e84866887291272d37c47045957 Mon Sep 17 00:00:00 2001 From: Rakshith Ravi Date: Sun, 3 May 2020 18:04:18 +0530 Subject: [PATCH 1/4] Removed v from tag check --- .github/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 1292e5f..85d32ae 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -19,7 +19,7 @@ jobs: uses: thebongy/version-check@v1 with: file: Cargo.toml - tagFormat: v${version}-beta + tagFormat: ${version}-beta id: version_check_staging - name: Check Release Version (master) @@ -27,7 +27,7 @@ jobs: uses: thebongy/version-check@v1 with: file: Cargo.toml - tagFormat: v${version} + tagFormat: ${version} id: version_check_master build: runs-on: ${{ matrix.os }} From dab6674fcf45ed9c77da356a1a77a4f4a74e95cf Mon Sep 17 00:00:00 2001 From: thebongy Date: Tue, 5 May 2020 14:45:10 +0530 Subject: [PATCH 2/4] fix: Correct staging crate package name --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b88227..5efcf0d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -119,7 +119,7 @@ jobs: - name: Publish Release (Github Release) uses: softprops/action-gh-release@v1 with: - files: target/package/juno-${{steps.version_check.outputs.rawVersion}}.crate + files: target/package/juno-${{steps.version_check.outputs.rawVersion}}-beta.crate tag_name: ${{steps.version_check.outputs.releaseVersion}} prerelease: true env: From a58b4b97781f99a7cca8a49253b3cf1c783b1c56 Mon Sep 17 00:00:00 2001 From: Rakshith Ravi Date: Tue, 5 May 2020 14:50:45 +0530 Subject: [PATCH 3/4] Revert "Removed v from tag check" This reverts commit 0fd883c09fea5e84866887291272d37c47045957. --- .github/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 85d32ae..1292e5f 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -19,7 +19,7 @@ jobs: uses: thebongy/version-check@v1 with: file: Cargo.toml - tagFormat: ${version}-beta + tagFormat: v${version}-beta id: version_check_staging - name: Check Release Version (master) @@ -27,7 +27,7 @@ jobs: uses: thebongy/version-check@v1 with: file: Cargo.toml - tagFormat: ${version} + tagFormat: v${version} id: version_check_master build: runs-on: ${{ matrix.os }} From 39a28f60b2267b39381174e91a7cf9064c9e2a82 Mon Sep 17 00:00:00 2001 From: Rakshith Ravi Date: Tue, 5 May 2020 14:51:31 +0530 Subject: [PATCH 4/4] Bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d232ac6..278f991 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Rakshith Ravi "] edition = "2018" name = "juno" -version = "0.1.2-1" +version = "0.1.3-1" license = "MIT" description = "A helper rust library for the juno microservices framework" homepage = "https://github.com/bytesonus/juno-rust"