From c6e838630c77a9a229fd1852a1a215b0d8f322b7 Mon Sep 17 00:00:00 2001 From: mathiasg Date: Mon, 4 May 2020 14:26:31 -0400 Subject: [PATCH] rel(1.3.0): Update CHANGES / optimize docs cache on circle --- .circleci/config.yml | 21 +++++++++++++-------- CHANGES.rst | 6 ++++++ 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ad59ebc8d3..fc5ae97807 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -321,7 +321,8 @@ jobs: name: Build only this commit command: make -C docs SPHINXOPTS="-W" BUILDDIR="_build/no_version_html" html - store_artifacts: - path: ./docs/_build/no_version_html + path: ./docs/_build/no_version_html/html + destination: noversion - run: name: Stop or generate versioned docs? command: | @@ -332,26 +333,30 @@ jobs: echo "Not a tag or master branch - skipping versioned docs." circleci step halt fi + - run: + name: Clean-up nonversioned docs. + command: make -C docs clean - restore_cache: keys: - - docs-v1-{{ .Branch }}-{{ .Revision }} - - docs-v1-{{ .Branch }}- - - docs-v1-master - - docs-v1- + - docs-v2-{{ .Branch }}-{{ .Revision }} + - docs-v2-{{ .Branch }}- + - docs-v2-master + - docs-v2- paths: - - ./docs/_build/_html + - ./docs/_build - run: name: Generate Versioned Docs command: make -f ./docs/Makefile versioned CURBRANCH=${CIRCLE_TAG:-$CIRCLE_BRANCH} - save_cache: - key: docs-v1-{{ .Branch }}-{{ .Revision }} + key: docs-v2-{{ .Branch }}-{{ .Revision }} paths: - - ./docs/_build/_html + - ./docs/_build - persist_to_workspace: root: docs/_build paths: html - store_artifacts: path: ./docs/_build/html + destination: versioned deploy_docker: machine: diff --git a/CHANGES.rst b/CHANGES.rst index 1f234eeed1..3aea368ef7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +1.3.0 (May 4, 2020) +=================== +Minor release enforcing BIDS-Derivatives labels on ``dseg`` file. + +* FIX: WM mask selection from dseg before generating report (#100) + 1.2.2 (April 16, 2020) ====================== Bug-fix release to fix phase-difference masking bug in the 1.2.x series.