Skip to content

Commit

Permalink
1.0.0b2
Browse files Browse the repository at this point in the history
  • Loading branch information
escapewindow committed Nov 28, 2016
1 parent b8352c3 commit 9ea9740
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion scriptworker/version.py
Expand Up @@ -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__)


Expand Down
4 changes: 2 additions & 2 deletions version.json
Expand Up @@ -3,7 +3,7 @@
1,
0,
0,
"beta1"
"beta2"
],
"version_string": "1.0.0-beta1"
"version_string": "1.0.0-beta2"
}

0 comments on commit 9ea9740

Please sign in to comment.