From ab3e35c4e6b2862bd9cba35e12bacffffdf1dde6 Mon Sep 17 00:00:00 2001 From: Jeff Eberl Date: Sat, 2 May 2020 14:45:50 -0600 Subject: [PATCH] Bump version --- 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 d148aa82..8ec12972 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "sandify", "homepage": "https://sandify.org", - "version": "0.2.1", + "version": "0.2.2", "private": true, "dependencies": { "@reduxjs/toolkit": "^1.2.5", diff --git a/src/features/app/appSlice.js b/src/features/app/appSlice.js index 479b8ad5..d7480fd6 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.1', // Also change the version in package.json. + sandifyVersion: '0.2.2', // 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 5edfad38..7816bcef 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.1", // Also change the version in package.json. + sandifyVersion: "0.2.2", // Also change the version in package.json. input: 'shape', }) })