From 6467f08d7c17d93d089d56515681beccf81d4592 Mon Sep 17 00:00:00 2001 From: Torin Sandall Date: Wed, 5 Apr 2017 11:03:47 -0700 Subject: [PATCH] Prepare v0.4.8 release --- CHANGELOG.md | 7 ++++++- Makefile | 2 +- site/documentation/references/deployments/index.md | 2 +- site/examples/docker-authorization/index.md | 2 +- site/get-opa/index.md | 12 ++++++------ 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76a2ef7b83..83dffc7b36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## 0.4.8 + +### Miscellaneous + +- Fix top-level navigation links +- Improve file loader error handling ## 0.4.7 diff --git a/Makefile b/Makefile index c801bc5005..3e8183a899 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Use of this source code is governed by an Apache2 # license that can be found in the LICENSE file. -VERSION := 0.4.8-dev +VERSION := 0.4.8 PACKAGES := \ github.com/open-policy-agent/opa/ast/.../ \ diff --git a/site/documentation/references/deployments/index.md b/site/documentation/references/deployments/index.md index 9435e22eb8..b362825b1a 100644 --- a/site/documentation/references/deployments/index.md +++ b/site/documentation/references/deployments/index.md @@ -27,7 +27,7 @@ recommend you review this section to familiarize yourself with the basics. OPA releases are available as images on Docker Hub. -* [openpolicyagent/opa:0.4.7](https://hub.docker.com/r/openpolicyagent/opa/){: .opa-deployments--docker-hub-list--link} +* [openpolicyagent/opa:0.4.8](https://hub.docker.com/r/openpolicyagent/opa/){: .opa-deployments--docker-hub-list--link} {: .opa-deployments--docker-hub-list} ### Running diff --git a/site/examples/docker-authorization/index.md b/site/examples/docker-authorization/index.md index bf0623968e..bddd56d4d0 100644 --- a/site/examples/docker-authorization/index.md +++ b/site/examples/docker-authorization/index.md @@ -66,7 +66,7 @@ $ mkdir -p policies ### 2. Download the latest version of OPA. ```shell -$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.4.7/opa_linux_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.4.8/opa_linux_amd64 > opa $ chmod u+x opa ``` diff --git a/site/get-opa/index.md b/site/get-opa/index.md index faedcb38ac..cfc6e6c1d1 100644 --- a/site/get-opa/index.md +++ b/site/get-opa/index.md @@ -13,9 +13,9 @@ title: Get Open Policy Agent The binary releases for 64-bit Linux and Mac are available for download here. For other releases of OPA see the [GitHub Releases](https://github.com/open-policy-agent/opa/releases) page. {: .opa-header--text} - * [64-bit Linux](https://github.com/open-policy-agent/opa/releases/download/v0.4.7/opa_linux_amd64){: .opa-header--download-list--link} - * [64-bit Mac OS X](https://github.com/open-policy-agent/opa/releases/download/v0.4.7/opa_darwin_amd64){: .opa-header--download-list--link} - * [Go Source](https://github.com/open-policy-agent/opa/archive/v0.4.7.tar.gz){: .opa-header--download-list--link} + * [64-bit Linux](https://github.com/open-policy-agent/opa/releases/download/v0.4.8/opa_linux_amd64){: .opa-header--download-list--link} + * [64-bit Mac OS X](https://github.com/open-policy-agent/opa/releases/download/v0.4.8/opa_darwin_amd64){: .opa-header--download-list--link} + * [Go Source](https://github.com/open-policy-agent/opa/archive/v0.4.8.tar.gz){: .opa-header--download-list--link} {: .opa-header--download-list} {% endcontentfor %} @@ -25,7 +25,7 @@ The binary releases for 64-bit Linux and Mac are available for download here. Fo ## 64-bit Linux ```shell -$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.4.7/opa_linux_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.4.8/opa_linux_amd64 > opa $ chmod u+x opa $ ./opa version ``` @@ -33,14 +33,14 @@ $ ./opa version ## 64-bit Mac OS X ```shell -$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.4.7/opa_darwin_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.4.8/opa_darwin_amd64 > opa $ chmod u+x opa $ ./opa version ``` ## Docker Image (64-bit Linux) ```shell -$ docker run openpolicyagent/opa:0.4.7 version +$ docker run openpolicyagent/opa:0.4.8 version ``` {% endcontentfor %}