Skip to content

Commit

Permalink
Bump version to 22.0-beta5
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed Oct 1, 2022
1 parent 05e767b commit fb69551
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 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: 22.0.0-beta4
version: 22.0.0-beta5
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 = '22'
# The full version, including alpha/beta/rc tags.
release = '22.0.0-beta4'
release = '22.0.0-beta5'

# 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": "22.0.0-beta4"
"version": "22.0.0-beta5"
}
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 @@ -568,6 +568,10 @@ const updates = {
...data,
version: [22, 'beta', 4],
}),
'22.beta.4': data => ({
...data,
version: [22, 'beta', 5],
}),
// TODO: Add shortcut for folks upgrading from v21 stable to v22
})
}
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 = [22, 'beta', 4]
const defaultState = [22, 'beta', 5]

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": "22.0.0-beta4",
"version": "22.0.0-beta5",
"author": "Felix Henninger <[email protected]>",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/library/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const version = '22.0.0-beta4'
export const version = '22.0.0-beta5'
export const build = {
//@ts-ignore Injected by webpack
flavor: <string>BUILD_FLAVOR,
Expand Down

0 comments on commit fb69551

Please sign in to comment.