Skip to content

Commit

Permalink
Bump all versions to 0.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpallant committed Nov 26, 2021
1 parent 3a02a50 commit bca41d4
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion book/src/encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ These Cargo features are named `encoding-{encoder_name}`, e.g. `encoding-rzcobs`
name = "my-application"

[dependencies.defmt]
version = "0.3.0"
version = "0.3.1"
features = ["encoding-rzcobs"] # <- encoding
```

Expand Down
4 changes: 2 additions & 2 deletions decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ license = "MIT OR Apache-2.0"
name = "defmt-decoder"
readme = "../README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[dependencies]
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.0" }
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.1" }
byteorder = "1"
colored = "2"
ryu = "1"
Expand Down
2 changes: 1 addition & 1 deletion defmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name = "defmt"
readme = "../README.md"
repository = "https://github.com/knurling-rs/defmt"
homepage = "https://knurling.ferrous-systems.com/"
version = "0.3.0"
version = "0.3.1"

[features]
alloc = []
Expand Down
2 changes: 1 addition & 1 deletion firmware/defmt-itm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "defmt-itm"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[dependencies]
cortex-m = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion firmware/defmt-rtt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "defmt-rtt"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[dependencies]
cortex-m = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions firmware/defmt-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ license = "MIT OR Apache-2.0"
name = "defmt-test"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[dependencies]
cortex-m = "0.7"
cortex-m-rt = "0.7"
defmt = { version = "0.3", path = "../../defmt" }
defmt-test-macros = { version = "=0.3.0", path = "macros" }
defmt-test-macros = { version = "=0.3.1", path = "macros" }
2 changes: 1 addition & 1 deletion firmware/defmt-test/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
name = "defmt-test-macros"
readme = "../README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion firmware/panic-probe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "panic-probe"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[dependencies]
cortex-m = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
name = "defmt-macros"
readme = "../README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[lib]
proc-macro = true
Expand All @@ -17,7 +17,7 @@ proc-macro = true
unstable-test = []

[dependencies]
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.0" }
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.1" }
proc-macro-error = "1"
proc-macro2 = "1"
quote = "1"
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
name = "defmt-parser"
readme = "../README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[features]
unstable = []
Expand Down
4 changes: 2 additions & 2 deletions print/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ license = "MIT OR Apache-2.0"
name = "defmt-print"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.0" }
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" }
log = "0.4"
structopt = "0.3"
2 changes: 1 addition & 1 deletion qemu-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ version = "0.1.0"

[dependencies]
anyhow = "1"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.0" }
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" }

0 comments on commit bca41d4

Please sign in to comment.