Skip to content

Commit

Permalink
Merge pull request #213 from jeffeb3/version_bump
Browse files Browse the repository at this point in the history
I'm 90% sure we already release 2.5 :). This is a bump to 0.2.6.
  • Loading branch information
jeffeb3 authored Sep 5, 2021
2 parents 43e3917 + 6ffb7be commit 5a6011b
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.4",
"version": "0.2.6",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
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.4', // Also change the version in package.json.
sandifyVersion: '0.2.6', // 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.4", // Also change the version in package.json.
sandifyVersion: "0.2.6", // Also change the version in package.json.
input: 'shape',
})
})
Expand Down

0 comments on commit 5a6011b

Please sign in to comment.