Skip to content

Releases: gnprice/toml-cli

v0.2.3

08 Dec 06:41
Compare
Choose a tag to compare
  • toml get on a missing key no longer panics. This gives it the same behavior as git config: print nothing, and exit with failure. (#14)
  • Fix query parse error on empty quoted key "", as in toml get data.toml 'foo."".bar'. (#20)

v0.2.2

08 Dec 06:41
Compare
Choose a tag to compare
  • New option toml get -r / --raw. (#19)

v0.2.1

08 Dec 06:42
Compare
Choose a tag to compare
  • Breaking: Previously toml get on a missing key would print "null" and exit with success. Now it panics. (The panic was filed as #14 and fixed in v0.2.3. Since v0.2.3 there are also tests that would catch this sort of unplanned behavior change.)

  • Update lexical-core dependency, fixing build on recent Rust toolchains. (#12)

  • Update toml_edit dependency, fixing parse error on dotted keys. (#2)

  • Update dependencies generally.

  • Adjust so cargo fmt and cargo clippy are clean.

v0.2.0

08 Dec 06:43
Compare
Choose a tag to compare
  • Breaking: Change query format from .foo.bar to foo.bar, like TOML itself.

v0.1.0

08 Dec 06:43
Compare
Choose a tag to compare

Initial release.

  • toml get.
  • toml set, just printing the modified version.