From 45b4296caec1e6810ce1f8939532d96971f1d5b9 Mon Sep 17 00:00:00 2001 From: Jeff Eberl Date: Mon, 3 Oct 2022 16:45:44 -0600 Subject: [PATCH] Bump version. --- package-lock.json | 4 ++-- package.json | 2 +- src/features/app/appSlice.js | 2 +- src/features/app/appSlice.spec.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index e076667c..219dcdad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sandify", - "version": "0.2.6", + "version": "0.2.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sandify", - "version": "0.2.6", + "version": "0.2.7", "dependencies": { "@reduxjs/toolkit": "^1.5.1", "array-move": "^3.0.1", diff --git a/package.json b/package.json index 44fa0ce5..75e3ca4c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "sandify", "homepage": "https://sandify.org", - "version": "0.2.6", + "version": "0.2.7", "private": true, "dependencies": { "@reduxjs/toolkit": "^1.5.1", diff --git a/src/features/app/appSlice.js b/src/features/app/appSlice.js index 96a27a86..fc4d0515 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.6', // Also change the version in package.json. + sandifyVersion: '0.2.7', // 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 eb121f12..8b13d0bd 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.6", // Also change the version in package.json. + sandifyVersion: "0.2.7", // Also change the version in package.json. input: 'shape', }) })