From d0671b803a7800b233e4dece7ac93e9dfa202d3d Mon Sep 17 00:00:00 2001 From: Jeff Eberl Date: Sat, 16 May 2020 11:22:45 -0600 Subject: [PATCH] v0.2.3 --- package.json | 2 +- src/features/app/appSlice.js | 2 +- src/features/app/appSlice.spec.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index c34a177e..5cd1966b 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/features/app/appSlice.js b/src/features/app/appSlice.js index d7480fd6..d1273904 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.2', // Also change the version in package.json. + sandifyVersion: '0.2.3', // 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 7816bcef..1649d135 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.2", // Also change the version in package.json. + sandifyVersion: "0.2.3", // Also change the version in package.json. input: 'shape', }) })