diff --git a/package-lock.json b/package-lock.json index 185b8dbf..4c507c15 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sandify", - "version": "0.2.7", + "version": "0.2.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sandify", - "version": "0.2.7", + "version": "0.2.8", "dependencies": { "@reduxjs/toolkit": "^1.5.1", "array-move": "^3.0.1", diff --git a/package.json b/package.json index 738c4315..4f379d6a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "sandify", "homepage": "https://sandify.org", - "version": "0.2.7", + "version": "0.2.8", "private": true, "dependencies": { "@reduxjs/toolkit": "^1.5.1", diff --git a/src/features/app/appSlice.js b/src/features/app/appSlice.js index fc4d0515..727dd1a4 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.7', // Also change the version in package.json. + sandifyVersion: '0.2.8', // 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 8b13d0bd..1bf0a15c 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.7", // Also change the version in package.json. + sandifyVersion: "0.2.8", // Also change the version in package.json. input: 'shape', }) })