From b3f62a16edd5b177a4543abf4edd692bb984d11c Mon Sep 17 00:00:00 2001 From: Torin Sandall Date: Wed, 23 Nov 2016 08:30:52 -0800 Subject: [PATCH] Prepare v0.2.1 release --- CHANGELOG.md | 9 ++++++++- Makefile | 2 +- site/examples/docker-authorization/index.md | 2 +- site/get-opa/index.md | 12 ++++++------ 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f0b99c3c..ef470d7204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## 0.2.1 + +### Improvements + +- Added support for non-ground global values +- Added several new string manipulation built-ins +- Added TextMate grammar file +- Setup Docker image build and push to Docker Hub as part of CI ## 0.2.0 diff --git a/Makefile b/Makefile index 3809cc52b6..096cd928ac 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.2.1-dev +VERSION := 0.2.1 PACKAGES := \ github.com/open-policy-agent/opa/ast/.../ \ diff --git a/site/examples/docker-authorization/index.md b/site/examples/docker-authorization/index.md index 126d276f02..bdf914ac2b 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.2.0/opa_linux_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.2.1/opa_linux_amd64 > opa $ chmod u+x opa ``` diff --git a/site/get-opa/index.md b/site/get-opa/index.md index 9da1277f6e..1b30ee6e6b 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.2.0/opa_linux_amd64){: .opa-header--download-list--link} - * [64-bit Mac OS X](https://github.com/open-policy-agent/opa/releases/download/v0.2.0/opa_darwin_amd64){: .opa-header--download-list--link} - * [Go Source](https://github.com/open-policy-agent/opa/archive/v0.2.0.tar.gz){: .opa-header--download-list--link} + * [64-bit Linux](https://github.com/open-policy-agent/opa/releases/download/v0.2.1/opa_linux_amd64){: .opa-header--download-list--link} + * [64-bit Mac OS X](https://github.com/open-policy-agent/opa/releases/download/v0.2.1/opa_darwin_amd64){: .opa-header--download-list--link} + * [Go Source](https://github.com/open-policy-agent/opa/archive/v0.2.1.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.2.0/opa_linux_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.2.1/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.2.0/opa_darwin_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.2.1/opa_darwin_amd64 > opa $ chmod u+x opa $ ./opa version ``` ## Docker Image (64-bit Linux) ```shell -$ docker run openpolicyagent/opa:0.2.0 version +$ docker run openpolicyagent/opa:0.2.1 version ``` {% endcontentfor %}