diff --git a/package.json b/package.json index e8b0603d..25cfc406 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "sandify", "homepage": "https://sandify.org", - "version": "0.2.4", + "version": "0.2.6", "private": true, "dependencies": { "@reduxjs/toolkit": "^1.5.1", diff --git a/src/features/app/appSlice.js b/src/features/app/appSlice.js index 131f9a90..96a27a86 100644 --- a/src/features/app/appSlice.js +++ b/src/features/app/appSlice.js @@ -3,7 +3,7 @@ import { createSlice } from '@reduxjs/toolkit' const appSlice = createSlice({ name: 'app', initialState: { - sandifyVersion: '0.2.4', // Also change the version in package.json. + sandifyVersion: '0.2.6', // Also change the version in package.json. input: 'shape', }, reducers: { diff --git a/src/features/app/appSlice.spec.js b/src/features/app/appSlice.spec.js index 61e37258..eb121f12 100644 --- a/src/features/app/appSlice.spec.js +++ b/src/features/app/appSlice.spec.js @@ -3,7 +3,7 @@ import app, { chooseInput } from './appSlice' describe('app reducer', () => { it('should handle initial state', () => { expect(app(undefined, {})).toEqual({ - sandifyVersion: "0.2.4", // Also change the version in package.json. + sandifyVersion: "0.2.6", // Also change the version in package.json. input: 'shape', }) })