Skip to content

Commit

Permalink
Bump version and upgrade project description in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Feb 18, 2024
1 parent 5bc6a98 commit b7864bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
- name: Create New Release
id: create-release
run: |
if [ "$env.release" == "true" ]; then
if [ "${{ env.release }}" == "true" ]; then
echo "Creating PROD release"
release_tag="v${{ env.pkg_version }}"
cargo_prerelease=("alpha" "beta" "rc")
prerelease=false
Expand All @@ -69,6 +70,7 @@ jobs:
fi
done
else
echo "Creating TEST release"
epoch="$(date +%s)"
current_version=${{ env.pkg_version }}
part=2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# https://doc.rust-lang.org/cargo/getting-started/first-steps.html#first-steps-with-cargo
[package]
name = "RuStream"
version = "0.0.3-b"
description = "An API written in Rust, to stream videos using Actix framework, via authenticated sessions"
version = "0.0.4"
description = "Self-hosted Streaming Engine, that can render videos via authenticated sessions."
license = "MIT"
documentation = "https://docs.rs/RuStream"
homepage = "https://github.com/thevickypedia/RuStream"
Expand Down

0 comments on commit b7864bd

Please sign in to comment.