diff --git a/.circleci/config.yml b/.circleci/config.yml index c4c7dc25a..e0eb2a95f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,19 +37,19 @@ references: # create_cache_root: &create_cache_root save_cache: - key: cache-root-v1-{{ .Branch }}-{{ checksum "./package-lock.json" }} + key: cache-root-v1-{{ .Branch }}-{{ checksum "./package.json" }} paths: - ./node_modules/ create_cache_docs: &create_cache_docs save_cache: - key: cache-docs-v1-{{ .Branch }}-{{ checksum "./tools/x-docs/package-lock.json" }} + key: cache-docs-v1-{{ .Branch }}-{{ checksum "./tools/x-docs/package.json" }} paths: - ./tools/x-docs/node_modules/ create_cache_workbench: &create_cache_workbench save_cache: - key: cache-workbench-v1-{{ .Branch }}-{{ checksum "./tools/x-workbench/package-lock.json" }} + key: cache-workbench-v1-{{ .Branch }}-{{ checksum "./tools/x-workbench/package.json" }} paths: - ./tools/x-workbench/node_modules/ diff --git a/changelog.md b/changelog.md index 7a0ef3b66..f996348d6 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,14 @@ ## v1 +### v1.0.0-beta.3 + +- Removes whitespace output around text output in x-teaser (#146) +- Refactors headshot prop to accept a string value in x-teaser (#153) +- Refactors theme indicator and theme rule to enable explicit overrides in x-teaser (#154) +- Adds parentTheme prop to x-teaser (#154) + + ### v1.0.0-beta.2 - Adds support for fragments to x-engine (#134)