Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed Jun 24, 2021
1 parent 77be8e3 commit 7ea907d
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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.2.2
version: 20.2.3
date-released: 2021-03-05
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.2.2'
release = '20.2.3'

# 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.2.2"
"version": "20.2.3"
}
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.2.2",
"version": "20.2.3",
"private": true,
"devDependencies": {
"babel-jest": "^26.6.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 @@ -470,6 +470,10 @@ const updates = {
...data,
version: [20, 2, 2],
}),
'20.2.2': data => ({
...data,
version: [20, 2, 3],
}),
}

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, 2, 2]
const defaultState = [20, 2, 3]

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.2.2",
"version": "20.2.3",
"author": "Felix Henninger <[email protected]>",
"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.2.2'
export const version = '20.2.3'
export const build = {
flavor: BUILD_FLAVOR,
commit: BUILD_COMMIT,
Expand Down

0 comments on commit 7ea907d

Please sign in to comment.