Skip to content

Commit

Permalink
Merge pull request #244 from jeffeb3/version-bump
Browse files Browse the repository at this point in the history
Bump version.
  • Loading branch information
jeffeb3 authored Oct 3, 2022
2 parents 88e1d51 + 45b4296 commit a8cff67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.6",
"version": "0.2.7",
"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.6', // Also change the version in package.json.
sandifyVersion: '0.2.7', // 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.6", // Also change the version in package.json.
sandifyVersion: "0.2.7", // Also change the version in package.json.
input: 'shape',
})
})
Expand Down

0 comments on commit a8cff67

Please sign in to comment.