Skip to content

Commit e44d925

Browse files
committed
release: v0.2.2
1 parent 07460d8 commit e44d925

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "islamic-text-copier",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "A cross-platform Islamic Text Copier built with React and Electron",
55
"main": "src/main.js",
66
"homepage": "./",

src/components/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const saveSettingsToLocalStorage = (settings) => {
3535
function App() {
3636
const [statusMessage, setStatusMessage] = useState('');
3737
const [meaningText, setMeaningText] = useState('');
38-
const [appVersion, setAppVersion] = useState('0.2.1');
38+
const [appVersion, setAppVersion] = useState('0.2.2');
3939
const [showDocs, setShowDocs] = useState(false);
4040
const [showSettings, setShowSettings] = useState(false);
4141
const [settings, setSettings] = useState(loadSettingsFromLocalStorage);

src/components/__tests__/App.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ describe('App Component', () => {
214214

215215
render(<App />);
216216

217-
// Should fallback to default version (0.2.1)
217+
// Should fallback to default version (0.2.2)
218218
await waitFor(() => {
219-
expect(screen.getByText(/Version 0\.2\.1/i)).toBeInTheDocument();
219+
expect(screen.getByText(/Version 0\.2\.2/i)).toBeInTheDocument();
220220
});
221221
});
222222

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.1
1+
0.2.2

0 commit comments

Comments
 (0)