Skip to content

Commit

Permalink
Bump version to 0.3.2 (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Pruitt authored Jun 27, 2021
1 parent c6af15f commit 97244d1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 0.3.2

* Fix setting devid when calling `publish`
# Version 0.3.1

* Add `config` command to show your current Smaug configuration
Expand Down
4 changes: 2 additions & 2 deletions 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ scoop install smaug
# Usage

```
smaug 0.3.1
smaug 0.3.2
Matt Pruitt <[email protected]>
Create games and share packages with the DragonRuby community
Expand Down
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smaug-cli"
version = "0.3.1"
version = "0.3.2"
authors = ["Matt Pruitt <[email protected]>"]
edition = "2018"

Expand All @@ -12,16 +12,16 @@ path = "src/main.rs"


[dependencies]
smaug = { path = "../smaug" }
smaug = { path="../smaug" }

clap = "3.0.0-beta.2"
derive_more = "0.99.11"
log = "0.4"
open = "1.7.0"
question = "0.2.2"
reqwest = { version = "0.11", features = ["blocking", "json"] }
reqwest = { version="0.11", features=["blocking", "json"] }
rm_rf = "0.6.1"
serde = { version = "1.0", features = ["derive"] }
serde = { version="1.0", features=["derive"] }
serde_json = "1.0"
stderrlog = "0.5"
tinytemplate = "1.1"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use log::*;

fn main() {
let matches = clap_app!(smaug =>
(version: "0.3.1")
(version: "0.3.2")
(author: "Matt Pruitt <[email protected]>")
(about: "Create games and share packages with the DragonRuby community")
(setting: clap::AppSettings::SubcommandRequiredElseHelp)
Expand Down
14 changes: 7 additions & 7 deletions smaug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smaug"
version = "0.3.1"
version = "0.3.2"
authors = ["Matt Pruitt <[email protected]>"]
edition = "2018"

Expand All @@ -12,16 +12,16 @@ derive_more = "0.99.11"
directories = "3.0.1"
git2 = "0.13"
ignore = "0.4.17"
linked-hash-map = { version = "0.5.4", features = ["serde_impl"] }
linked-hash-map = { version="0.5.4", features=["serde_impl"] }
log = "0.4"
regex = "1"
relative-path = { version = "1.3.2", features = ["serde"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
relative-path = { version="1.3.2", features=["serde"] }
reqwest = { version="0.11", features=["blocking", "json"] }
rm_rf = "0.6.1"
semver = { version = "0.11", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
semver = { version="0.11", features=["serde"] }
serde = { version="1.0", features=["derive"] }
shellexpand = "2.1"
toml = { version = "0.5.8", features = ["preserve_order"] }
toml = { version="0.5.8", features=["preserve_order"] }
url = "2.2.0"
walkdir = "2"
zip = "0.5"
Expand Down

0 comments on commit 97244d1

Please sign in to comment.