From 59b73d1cd3670821e515f89dd8fe5a54be04d003 Mon Sep 17 00:00:00 2001 From: Tyler Johnson Date: Tue, 19 Jun 2018 21:19:10 -0400 Subject: [PATCH] Wait for snap publish confirmation --- .circleci/config.yml | 4 +++- CHANGELOG.md | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bef2a4d..95313b1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,8 +54,10 @@ jobs: - run: name: Confirm release + no_output_timeout: 2m command: | - snapcraft list-revisions fdic |grep $(cat VERSION) + sleep 3 + until (snapcraft list-revisions fdic |grep $(cat VERSION)); do sleep 7; done release_github: working_directory: ~/workspace diff --git a/CHANGELOG.md b/CHANGELOG.md index bd0783d..0087be2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Allow min/max wordlength cli options - Check default ubuntu dict paths +## [1.0.7] - 2018-06-19 +### Added +- Improved release process + ## [1.0.5] - 2018-06-19 ### Added - Improved release process