Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.28.2 #1733

Merged
merged 2 commits into from
Mar 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/cache-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<a name="0.28.2"></a>

## 0.28.2 (2019-03-28)

### Bug fixes

* [ide] Fix upload to the default board on a fresh installation of XOD IDE (#1732)

<a name="0.28.1"></a>

## 0.28.1 (2019-03-15)
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"packages": [
"packages/*"
],
"version": "0.28.1"
"version": "0.28.2"
}
2 changes: 1 addition & 1 deletion packages/xod-client-electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down