Skip to content

Commit

Permalink
1.0.0b4
Browse files Browse the repository at this point in the history
  • Loading branch information
escapewindow committed Dec 19, 2016
1 parent e934a23 commit acb2a9a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.0b4] - 2016-12-19
### Added
- beetmover and balrog scriptworker support in chain of trust verification
- `cot_restricted_trees` config, which maps branch-nick to branches

### Changed
- Changed `cot_restricted_scopes` to be a scope to branch-nick dict, indexed by `cot_product`

### Fixed
- nuke then move the tmp gpg homedir, rather than trying to [wrongly] use `overwrite_gpg_home` on a parent dir

## [1.0.0b3] - 2016-12-07
### Added
- Dockerfiles: one for general testing and one for gpg homedir testing, with readme updates
Expand Down
1 change: 1 addition & 0 deletions scriptworker/constants.py
Expand Up @@ -199,6 +199,7 @@
# for trace_back_to_*_tree. These repos have access to restricted scopes;
# all other repos are relegated to CI scopes.
'valid_vcs_rules': ({
# TODO index by cot_product
"schemes": ["https", "ssh"],
"netlocs": ["hg.mozilla.org"],
"path_regexes": [
Expand Down
2 changes: 1 addition & 1 deletion scriptworker/version.py
Expand Up @@ -50,7 +50,7 @@ def get_version_string(version):

# 1}}}
# Semantic versioning 2.0.0 http://semver.org/
__version__ = (1, 0, 0, "beta3")
__version__ = (1, 0, 0, "beta4")
__version_string__ = get_version_string(__version__)


Expand Down
12 changes: 6 additions & 6 deletions version.json
@@ -1,9 +1,9 @@
{
"version": [
1,
0,
0,
"beta3"
],
"version_string": "1.0.0-beta3"
1,
0,
0,
"beta4"
],
"version_string": "1.0.0-beta4"
}

0 comments on commit acb2a9a

Please sign in to comment.