Skip to content

Releases: suzuki-shunsuke/yaml2json

v0.2.1

30 May 03:54
f4de19c
Compare
Choose a tag to compare

Pull Requests | Issues | v0.2.0...v0.2.1

Features

#26 Support changing the indent

e.g.

$ yaml2json aqua.yaml
{"packages":[{"name":"rhysd/actionlint@v1.6.12"},{"name":"golangci/golangci-lint@v1.45.2"},{"name":"reviewdog/reviewdog@v0.14.1"}],"registries":[{"ref":"v2.12.0","type":"standard"}]}
$ yaml2json -i "  " aqua.yaml
{
  "packages": [
    {
      "name": "rhysd/actionlint@v1.6.12"
    },
    {
      "name": "golangci/golangci-lint@v1.45.2"
    },
    {
      "name": "reviewdog/reviewdog@v0.14.1"
    }
  ],
  "registries": [
    {
      "ref": "v2.12.0",
      "type": "standard"
    }
  ]
}

v0.2.0

04 May 22:05
4f29177
Compare
Choose a tag to compare

Pull Requests | Issues | v0.1.1...v0.2.0

⚠️ Breaking Changes

#8 Convert bool and int of map key into string

v0.2.0-0

04 May 14:51
4f29177
Compare
Choose a tag to compare
v0.2.0-0 Pre-release
Pre-release

Pull Requests | Issues | v0.1.1...v0.2.0-0

⚠️ Breaking Changes

#8 Convert bool and int of map key into string

v0.1.1

04 May 13:29
1c73a0f
Compare
Choose a tag to compare

Pull Requests | Issues | v0.1.0...v0.1.1

Others

#6 docs: add Install section
#7 Add assets for Windows

v0.1.0

04 May 12:10
e6e5dbc
Compare
Choose a tag to compare

Pull Requests | Issues | 8448583...v0.1.0

First release 🎉

#1

v0.1.0-2

04 May 12:07
e6e5dbc
Compare
Choose a tag to compare
v0.1.0-2 Pre-release
Pre-release

Pull Requests | Issues | v0.1.0-1...v0.1.0-2

Changelog

  • e6e5dbc Merge pull request #5 from suzuki-shunsuke/ci/define-permission
  • f203850 ci: define permission explicitly