github aquaproj/aqua v0.9.0-0

latest releases: v2.34.0, v2.34.0-5, v2.34.0-4...
pre-release2 years ago

Pull Requests | Issues | v0.8.14-1...v0.9.0-0

⚠️ Breaking Changes

#520 #521 Remove inline_registry

How to migrate

Use local Registry instead of inline Registry.

https://aquaproj.github.io/docs/reference/config

AS IS

aqua.yaml

inline_registry:
  packages:
  - type: github_release
    repo_owner: suzuki-shunsuke
    repo_name: cmdx
    asset: 'cmdx_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz'

TO BE

aqua.yaml

registries:
- name: inline
  type: local
  path: registry.yaml

registry.yaml

packages:
- type: github_release
  repo_owner: suzuki-shunsuke
  repo_name: cmdx
  asset: 'cmdx_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz'

Don't miss a new aqua release

NewReleases is sending notifications on new releases.