From 69430c127d22b31afe78e3181025772ab818de9c Mon Sep 17 00:00:00 2001 From: Aleksei Ivanov Date: Tue, 20 Apr 2021 05:26:49 +0300 Subject: [PATCH 1/5] Update CHANGELOG.md --- docs/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 168741e..c3290df 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.6.1-beta] - 20-04-2021 + +### Updated +- Fix module add/remove commands not updating containers +- Silence helper scripts by default +- Sync after up scripts + ## [0.6.0-beta] - 18-04-2021 ### Added From c50b222275ae1e23c15d671b772839fabec952fa Mon Sep 17 00:00:00 2001 From: Aleksei Ivanov Date: Tue, 20 Apr 2021 05:27:54 +0300 Subject: [PATCH 2/5] Update CHANGELOG.md --- docs/CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c3290df..ee275a5 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,7 +4,6 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - ## [0.6.1-beta] - 20-04-2021 ### Updated From 2186cd1e6cb6d9d890275efe1ca683d22123861e Mon Sep 17 00:00:00 2001 From: Aleksei Ivanov Date: Tue, 20 Apr 2021 19:25:46 +0300 Subject: [PATCH 3/5] Update CHANGELOG.md --- docs/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ee275a5..1cd7745 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.6.1-beta] - 20-04-2021 +### Added +- Added `upgrade` command to update used blueprint version + ### Updated - Fix module add/remove commands not updating containers - Silence helper scripts by default From e1cc62a4de334d1a17f5315524d15100c5c784f1 Mon Sep 17 00:00:00 2001 From: Aleksei Ivanov Date: Thu, 22 Apr 2021 04:14:18 +0300 Subject: [PATCH 4/5] Update documentation for 0.6.1 --- docs/CHANGELOG.md | 7 ++++++- docs/_sidebar.md | 1 + docs/commands/upgrade.md | 8 ++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 docs/commands/upgrade.md diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 1cd7745..3ee04a5 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,16 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.6.1-beta] - 20-04-2021 +## [0.6.1-beta] - 22-04-2021 ### Added - Added `upgrade` command to update used blueprint version +- Guided installation ### Updated - Fix module add/remove commands not updating containers - Silence helper scripts by default - Sync after up scripts +### Fixed +- Sync after scripts have been run after `up` command finishes +- Always refresh containers after building them + ## [0.6.0-beta] - 18-04-2021 ### Added diff --git a/docs/_sidebar.md b/docs/_sidebar.md index 0d3174f..f8fdc09 100644 --- a/docs/_sidebar.md +++ b/docs/_sidebar.md @@ -3,4 +3,5 @@ - [Workflow](/workflow.md) - [Commands](/commands.md) - [run](/commands/run.md) + - [upgrade](/commands/upgrade.md) - [Changelog](/CHANGELOG.md) diff --git a/docs/commands/upgrade.md b/docs/commands/upgrade.md new file mode 100644 index 0000000..6ccb452 --- /dev/null +++ b/docs/commands/upgrade.md @@ -0,0 +1,8 @@ +# `upgrade` command + +## Description + +Upgrade the blueprint version to the latest version. + +This checks the blueprint repository for any changes on the remote branch +and updates the version to the latest one. From 9fcad8b966207ffae8a4dd974e596d954dff0dc5 Mon Sep 17 00:00:00 2001 From: Aleksei Ivanov Date: Thu, 22 Apr 2021 04:22:09 +0300 Subject: [PATCH 5/5] Update README.md Update getting started link --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index c35b41f..41c6946 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,6 @@