Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffeb3 committed May 16, 2020
1 parent d1ca2aa commit d0671b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sandify",
"homepage": "https://sandify.org",
"version": "0.2.2",
"version": "0.2.3",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.2.5",
Expand Down
2 changes: 1 addition & 1 deletion src/features/app/appSlice.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createSlice } from '@reduxjs/toolkit'
const appSlice = createSlice({
name: 'app',
initialState: {
sandifyVersion: '0.2.2', // Also change the version in package.json.
sandifyVersion: '0.2.3', // Also change the version in package.json.
input: 'shape',
},
reducers: {
Expand Down
2 changes: 1 addition & 1 deletion src/features/app/appSlice.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import app, { chooseInput } from './appSlice'
describe('app reducer', () => {
it('should handle initial state', () => {
expect(app(undefined, {})).toEqual({
sandifyVersion: "0.2.2", // Also change the version in package.json.
sandifyVersion: "0.2.3", // Also change the version in package.json.
input: 'shape',
})
})
Expand Down

0 comments on commit d0671b8

Please sign in to comment.