Skip to content

Releases: ipfs/go-ipfs-cmds

v0.13.0

27 Aug 19:03
94d29e1
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.12.0...v0.13.0

v0.12.0

20 Aug 19:00
7bff20e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.11.0...v0.12.0

v0.11.0

15 Apr 14:58
c42de9a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.10.2...v0.11.0

v0.10.2

15 Apr 14:09
9c8b443
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.10.1...v0.10.2

v0.10.1

28 Mar 16:04
84704fd
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.10.0...v0.10.1

v0.10.0

22 Aug 11:39
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.9.0...v0.10.0

v0.9.0

27 Mar 22:30
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.8.2...v0.9.0

v0.7.0

22 Mar 19:16
ccce9bd
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.0...v0.7.0

v0.6.0

27 Jan 17:05
4ade007
Compare
Choose a tag to compare
  • Added support for DelimitedStringsOption which allows the CLI to process options like command --inputs="a,b,c --inputs="x,y,z" as []string{"a","b","c","x","y","z"}.
  • Added strictness + panics if trying to use an incorrect default option (e.g. StringOption("string", "s", "a string").WithDefault(5))

v0.5.0

08 Dec 18:43
edc78ef
Compare
Choose a tag to compare

Added support for StringsOption even over HTTP #203

Note: This release technically changes how Strings options were being sent over the wire for HTTP from a Go formatted string array (e.g. [str1 str2 str3]) to sending as repeated HTTP query parameters. However, this wasn't really working before and so should have no effect on downstream users.