Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
v0.4.0: release fmt command
Browse files Browse the repository at this point in the history
This release includes the new fmt command, a command
that can be used to format your design files. This command
lays the groundwork for having editing functionality through
the web-ui.

In addition it contains:
- updates to the tutorial
- `rst init` creates a `design` folder instead of a `reqs` folder
- security additions
- lots and lots of additional unit tests
- minor changes to the web-ui
  • Loading branch information
vitiral committed Jan 23, 2017
1 parent 409a3ef commit 53f1135
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rst_app"
version = "0.3.7"
version = "0.4.0"
description = "rst: the requirements tracking tool made for developers"
repository = "https://github.com/vitiral/rst"
readme = "README.md"
Expand Down
7 changes: 5 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,13 @@ git-verify: # make sure git is clean and on master

publish: git-verify lint test-web build-web check # publish to github and crates.io
git commit -a -m "v{{version}} release"
just publish-fast
just publish-cargo
just publish-git

publish-fast: # publish without verification
publish-cargo: # publish cargo without verification
cargo publish --no-verify

publish-git: # publish git without verification
git push origin master
git tag -a "v{{version}}" -m "v{{version}}"
git push origin --tags
Expand Down
Binary file modified src/api/data/web-ui.tar
Binary file not shown.

0 comments on commit 53f1135

Please sign in to comment.