BurntSushi/toml
### [`v1.1.0`](https://togithub.com/BurntSushi/toml/releases/v1.1.0)
[Compare Source](https://togithub.com/BurntSushi/toml/compare/v1.0.0...v1.1.0)
Just a few bugfixes:
- Skip fields with `toml:"-"` even when they're unsupported types. Previously something like this would fail to encode due to `func` being an unsupported type:
struct {
Str string `toml:"str"
Func func() `toml:"-"`
}
- Multiline strings can't end with `\`. This is valid:
### Valid
key = """ foo \
"""
### Invalid
key = """ foo \ """
- Don't quote values in `TOMLMarshaler`. Previously they would always include quoting (e.g. `"value"`), while the entire point of this interface is to bypass that.
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, click this checkbox.
This PR contains the following updates:
v1.0.0
->v1.1.0
Release Notes
BurntSushi/toml
### [`v1.1.0`](https://togithub.com/BurntSushi/toml/releases/v1.1.0) [Compare Source](https://togithub.com/BurntSushi/toml/compare/v1.0.0...v1.1.0) Just a few bugfixes: - Skip fields with `toml:"-"` even when they're unsupported types. Previously something like this would fail to encode due to `func` being an unsupported type: struct { Str string `toml:"str" Func func() `toml:"-"` } - Multiline strings can't end with `\`. This is valid: ### Valid key = """ foo \ """ ### Invalid key = """ foo \ """ - Don't quote values in `TOMLMarshaler`. Previously they would always include quoting (e.g. `"value"`), while the entire point of this interface is to bypass that.Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.