Skip to content

6.0.0

Compare
Choose a tag to compare
@417-72KI 417-72KI released this 14 Oct 14:11
· 58 commits to main since this release

New Feature

  • Supports Swift Build Tool Plug-in

Breaking

  • Now use JSON as a raw data instead of PropertyList binary.
  • Any parsed numbers are stored as Decimal instead of Int or Double.
  • Folder composition has been changed and .env is no longer used.
    You should replace .env/{environment}.yml with {environment}/{filename}.yml to override base configuration.

Before

config
├ .env
│ ├ debug.yml
│ ├ adhoc.yml
│ └ release.yml
├ a.yml
├ b.yml
└ c.yml

After

config
│ ├ debug
│ │ └ a.yml
│ ├ adhoc
│ │ ├ a.yml
│ │ └ b.yml
│ └ release
│   ├ a.yml
│   ├ b.yml
│   └ c.yml
├ a.yml
├ b.yml
└ c.yml

What's Changed

Full Changelog: 5.2.0...6.0.0