From 9ea9740b816b8c0cdbb26de16557bf9472b32272 Mon Sep 17 00:00:00 2001 From: Aki Sasaki Date: Mon, 28 Nov 2016 11:25:25 -0800 Subject: [PATCH] 1.0.0b2 --- CHANGELOG.md | 5 ++++- scriptworker/version.py | 2 +- version.json | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6e3474f..3452e8a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [1.0.0b2] - 2016-11-28 ### Changed - `scriptworker.cot.verify.raise_on_errors` now takes a kwarg of `level`, which defaults to `logging.CRITICAL`. This is to support fuzzy task matching, where not matching a task is non-critical. - `scriptworker.cot.verify.verify_link_in_task_graph` now supports fuzzy task matching. If the Link's `task_id` isn't in the task graph, try to match the task definition against the task graph definitions, and throw `CoTError` on failure. This is to support Taskcluster retriggers. - `verify_cot` is now an entry point, rather than a helper script in `scriptworker/test/data/`. +### Fixed +- allowed for `USE_SCCACHE` as a build env var + ## [1.0.0b1] - 2016-11-14 ### Added - `scriptworker.cot.verify` now verifies the chain of trust for the graph. diff --git a/scriptworker/version.py b/scriptworker/version.py index 8497fae1..67af04bf 100755 --- a/scriptworker/version.py +++ b/scriptworker/version.py @@ -49,7 +49,7 @@ def get_version_string(version): # 1}}} # Semantic versioning 2.0.0 http://semver.org/ -__version__ = (1, 0, 0, "beta1") +__version__ = (1, 0, 0, "beta2") __version_string__ = get_version_string(__version__) diff --git a/version.json b/version.json index 9c930520..29c1784a 100644 --- a/version.json +++ b/version.json @@ -3,7 +3,7 @@ 1, 0, 0, - "beta1" + "beta2" ], - "version_string": "1.0.0-beta1" + "version_string": "1.0.0-beta2" } \ No newline at end of file