Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 380 Bytes

changelog.adoc

File metadata and controls

13 lines (9 loc) · 380 Bytes

fsmodtime

v0.3.0: breaking changes

Change signature of fsmodtime.ExpandEnv to accept a map of replacements:

- func ExpandEnv(lines []string) ([]string, error)
+ func ExpandEnv(lines []string, replacements map[string]string) ([]string, error)

Since the replacements can be nil, adding nil to the second argument will maintain existing behavior.