{{ partial "releases/downloads.html" (dict "Category" (index (index $.Site.Data "release-categories") "camel-k") "Pages" $.Site.Pages "Version" .Params.version) }}
Release is tagged with v{{ .Params.version }}
in the Git, to fetch it use:
git clone https://git-wip-us.apache.org/repos/asf/camel-k.git cd camel-k git checkout v{{ .Params.version }}
Here is a list of all the issues that have been resolved for this release
{{ $headers := dict }} {{ with os.Getenv "GITHUB_TOKEN" }} {{ $headers = dict "Authorization" (printf "Bearer %s" .) }} {{ else }} {{ $headers = dict "Authorization" (printf "Basic %s" (printf "%s:%s" $.Site.Params.GitHubUsername $.Site.Params.GitHubToken | base64Encode)) }} {{ end }} {{ $issues := getJSON "https://api.github.com/repos/apache/camel-k/issues?state=closed&milestone=" (string .Params.milestone) $headers }}