diff --git a/.circleci/cache-version b/.circleci/cache-version
new file mode 100644
index 000000000..d00491fd7
--- /dev/null
+++ b/.circleci/cache-version
@@ -0,0 +1 @@
+1
diff --git a/.circleci/config.yml b/.circleci/config.yml
index b4405e099..e81582d2d 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -13,16 +13,16 @@ defs:
cache:
cache-node_modules: &cache-node_modules
- key: node_modules-{{ arch }}-{{ checksum "yarn.lock" }}
+ key: node_modules-{{ arch }}-{{ checksum ".circleci/cache-version" }}-{{ checksum "yarn.lock" }}
paths:
- node_modules
restore-node_modules: &restore-node_modules
keys:
- - node_modules-{{ arch }}-{{ checksum "yarn.lock" }}
+ - node_modules-{{ arch }}-{{ checksum ".circleci/cache-version" }}-{{ checksum "yarn.lock" }}
# if cache for exact version of `yarn.lock` is not present then
# load any most recent one
- - node_modules-{{ arch }}
+ - node_modules-{{ arch }}-{{ checksum ".circleci/cache-version" }}
machines:
docker-custom-nodejs: &docker-custom-nodejs
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c3e1534e6..32f64c6fd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+
+
+## 0.28.2 (2019-03-28)
+
+### Bug fixes
+
+* [ide] Fix upload to the default board on a fresh installation of XOD IDE (#1732)
+
## 0.28.1 (2019-03-15)
diff --git a/lerna.json b/lerna.json
index 34417a3ef..bd62dc184 100644
--- a/lerna.json
+++ b/lerna.json
@@ -6,5 +6,5 @@
"packages": [
"packages/*"
],
- "version": "0.28.1"
+ "version": "0.28.2"
}
diff --git a/packages/xod-client-electron/package.json b/packages/xod-client-electron/package.json
index 5c5f1ff93..7bbdcf04a 100644
--- a/packages/xod-client-electron/package.json
+++ b/packages/xod-client-electron/package.json
@@ -5,7 +5,7 @@
"license": "AGPL-3.0",
"main": "src-babel/app/main.js",
"name": "xod-client-electron",
- "version": "0.28.1",
+ "version": "0.28.2",
"scripts": {
"build:workspace": "cpx \"../../workspace/**/*\" \"src-babel/workspace\"",
"build:gui": "webpack --colors",