From 6ffb7bed8f1147141ed5afadade9ebe609b9430d Mon Sep 17 00:00:00 2001 From: Jeff Eberl Date: Wed, 1 Sep 2021 13:45:59 -0600 Subject: [PATCH] I'm 90% sure we already release 2.5 :). This is a bump to 0.2.6. --- 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 b2d79746..e93398b4 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', }) })