Skip to content

Commit

Permalink
Bump version to 20.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed Jul 17, 2020
1 parent a99e485 commit dfec67f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions citation.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors:
- given-names: Benjamin E.
family-names: Hilbig
doi: 10.5281/zenodo.801791
version: 20.0.1
date-released: 2020-04-27
version: 20.0.2
date-released: 2020-07-17
repository-code: https://github.com/felixhenninger/lab.js
license: other-open
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# The short X.Y version.
version = '20'
# The full version, including alpha/beta/rc tags.
release = '20.0.1'
release = '20.0.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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 @@
"npmClient": "yarn",
"npmClientArgs": ["--ignore-optional"],
"useWorkspaces": true,
"version": "20.0.1"
"version": "20.0.2"
}
2 changes: 1 addition & 1 deletion packages/builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lab.js.builder",
"version": "20.0.1",
"version": "20.0.2",
"private": true,
"devDependencies": {
"babel-jest": "^24.9.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/builder/src/logic/io/upgrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,10 @@ const updates = {
...data,
version: [20, 0, 1],
}),
'20.0.1': data => ({
...data,
version: [20, 0, 2],
}),
}

export default (data) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/builder/src/reducers/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const defaultState = [20, 0, 1]
const defaultState = [20, 0, 2]

export default (state=defaultState, action) =>
state
2 changes: 1 addition & 1 deletion packages/library/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lab.js",
"description": "Building blocks for web-based behavioral experiments",
"version": "20.0.1",
"version": "20.0.2",
"author": "Felix Henninger <mailbox@felixhenninger.com>",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/library/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import PostMessage from './plugins/postmessage'
import Submit from './plugins/submit'
import Transmit from './plugins/transmit'

export const version = '20.0.1'
export const version = '20.0.2'
export const build = {
flavor: BUILD_FLAVOR,
commit: BUILD_COMMIT,
Expand Down

0 comments on commit dfec67f

Please sign in to comment.