Skip to content

Commit

Permalink
Release version 0.2.0.
Browse files Browse the repository at this point in the history
Crude but effective release process:

  $ perl -i -0pe 's/0\.1\.0/0.2.0/g' Cargo.toml README.md
  $ cargo run
  ...
  toml-cli 0.2.0
  ...

(The `cargo run` also updates Cargo.lock .)

Then commit, tag, push, and upload.
  • Loading branch information
gnprice committed Sep 24, 2019
1 parent c130d8c commit 4706330
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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 = "toml-cli"
version = "0.1.0"
version = "0.2.0"
description = "A simple CLI for editing and querying TOML files."
authors = ["Greg Price <gnprice@gmail.com>"]
repository = "https://github.com/gnprice/toml-cli"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ This subcommand is quite raw in two respects:

```
$ toml --help
toml-cli 0.1.0
toml-cli 0.2.0
A simple CLI for editing and querying TOML files.
USAGE:
Expand All @@ -109,7 +109,7 @@ SUBCOMMANDS:

```
$ toml get --help
toml-get 0.1.0
toml-get 0.2.0
Print some data from the file
USAGE:
Expand All @@ -129,7 +129,7 @@ ARGS:

```
$ toml set --help
toml-set 0.1.0
toml-set 0.2.0
Edit the file to set some data (currently, just print modified version)
USAGE:
Expand Down

0 comments on commit 4706330

Please sign in to comment.