Skip to content

Commit

Permalink
Merge pull request #146 from jeffeb3/version
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
jeffeb3 authored May 2, 2020
2 parents c30a033 + ab3e35c commit 737ea85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/features/app/appSlice.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion src/features/app/appSlice.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
})
})
Expand Down

0 comments on commit 737ea85

Please sign in to comment.