Skip to content

Commit

Permalink
Bump version to v23-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed Jul 17, 2023
1 parent ed3003c commit af63a19
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 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-beta10
version: 23.0.0-alpha1
date-released: 2021-03-05
repository-code: https://github.com/felixhenninger/lab.js
license: other-open
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
# built documents.
#
# The short X.Y version.
version = '22'
version = '23'
# The full version, including alpha/beta/rc tags.
release = '22.0.0-beta10'
release = '23.0.0-alpha1'

# 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-beta10"
"version": "23.0.0-alpha1"
}
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": "22.0.0-beta10",
"version": "23.0.0-alpha1",
"private": true,
"devDependencies": {
"babel-jest": "^26.6.0",
Expand Down
6 changes: 5 additions & 1 deletion packages/builder/src/logic/io/upgrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,11 @@ const updates = {
...data,
version: [22, 'beta', 10],
}),
// TODO: Add shortcut for folks upgrading from v21 stable to v22
'22.beta.10': data => ({
...data,
version: [23, 'alpha', 1],
}),
// 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 = [22, 'beta', 10]
const defaultState = [23, 'alpha', 1]

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-beta10",
"version": "23.0.0-alpha1",
"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-beta10'
export const version = '23.0.0-alpha1'
export const build = {
//@ts-ignore Injected during build
flavor: <string>BUILD_FLAVOR,
Expand Down

0 comments on commit af63a19

Please sign in to comment.