Skip to content

v0.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Apr 08:48
· 59 commits to main since this release
v0.6.0
0a3b9a0

What's Changed

Breaking changes

  • Removed config packages[].repos[].patches[].file in favor of per-patch config defining .file by @applejag in #30

    For example:

    # before:
    - url: tmp/upstream-test
      patches:
        - file: go.mod   # <---
          regex:
            match: '(github.com/joho/godotenv) v.*'
            replace: '{{ index .Groups 1 }} {{ .Version }}'
    
    # after:
    - url: tmp/upstream-test
      patches:
        - regex:
            file: go.mod   # <---
            match: '(github.com/joho/godotenv) v.*'
            replace: '{{ index .Groups 1 }} {{ .Version }}'

New features

Under the hood changes

Dependencies

New Contributors

Full Changelog: v0.5.2...v0.6.0