Skip to content

Commit

Permalink
Bump version to v23-alpha5
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed May 8, 2024
1 parent 9192e3a commit 03569c3
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: 23.0.0-alpha4
version: 23.0.0-alpha5
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 = '23'
# The full version, including alpha/beta/rc tags.
release = '23.0.0-alpha4'
release = '23.0.0-alpha5'

# 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": "23.0.0-alpha4"
"version": "23.0.0-alpha5"
}
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": "23.0.0-alpha4",
"version": "23.0.0-alpha5",
"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 @@ -612,6 +612,10 @@ const updates = {
...data,
version: [23, 'alpha', 4],
}),
'23.alpha.4': data => ({
...data,
version: [23, 'alpha', 5],
}),
// TODO: Add shortcut for folks upgrading from v21 stable to v23
})
}
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 = [23, 'alpha', 4]
const defaultState = [23, 'alpha', 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": "23.0.0-alpha4",
"version": "23.0.0-alpha5",
"author": "Felix Henninger <mailbox@felixhenninger.com>",
"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 = '23.0.0-alpha4'
export const version = '23.0.0-alpha5'
export const build = {
//@ts-ignore Injected during build
flavor: <string>BUILD_FLAVOR,
Expand Down

0 comments on commit 03569c3

Please sign in to comment.