Skip to content

Commit

Permalink
feat: update crate to version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bellackn committed Mar 25, 2024
1 parent af92f41 commit d1441e1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "steamr"
version = "0.3.0"
version = "0.3.1"
description = "HTTP client library to communicate with Valve's Steam API"
edition = "2021"
homepage = "https://github.com/bellackn/steamr"
Expand Down
13 changes: 13 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,16 @@ build:

doc:
@ cargo doc --no-deps

# Publish the crate on crates.io
release version: lint test
#!/usr/bin/env bash
read -n 1 -s -r -p "you're about to release {{version}} - press any button to continue"
echo 'updating version in Cargo.toml to {{version}}'
sed -i -e 's/^version = ".*"$/version = "{{version}}"/' Cargo.toml
echo 'committing changes'
git add .
git commit -m 'feat: update crate to version {{version}}'
git tag -a -s -m 'release version {{version}}' {{version}}
git push --tags

0 comments on commit d1441e1

Please sign in to comment.