Skip to content

Commit

Permalink
Fixed build version number and fixed broken test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ransome1 committed Feb 25, 2024
1 parent 73184a7 commit e827284
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion flatpak/com.github.ransome1.sleek.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<developer_name>Robin Ahle</developer_name>
<content_rating type="oars-1.1"/>
<releases>
<release version="2.0.10" date="2024-02-25"/>
<release version="2.0.11" date="2024-02-25"/>
</releases>
<url type="homepage">https://github.com/ransome1/sleek</url>
<url type="contact">https://github.com/ransome1/sleek/issues</url>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sleek",
"version": "2.0.10",
"version": "2.0.11",
"main": "./src/main/main.tsx",
"scripts": {
"build": "concurrently \"yarn run peggy\" \"yarn run build:main\" \"yarn run build:renderer\"",
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: sleek
base: core20
version: "2.0.10"
version: "2.0.11"
summary: todo.txt manager for Linux, free and open-source (FOSS)
description: |
sleek is an open-source (FOSS) todo manager based on the todo.txt syntax. Stripped down to only the most necessary features, and with a clean and simple interface, sleek aims to help you focus on getting things done.
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/main/ProcessTodoObjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ describe('Process todo.txt objects', () => {
expect(flattenedObjects[3].due).toContain('2023-01-02');
expect(flattenedObjects[4].due).toContain('2023-01-03');
expect(flattenedObjects[5].due).toContain('2023-01-04');
expect(flattenedObjects[6].due).toContain('2023-01-05');
expect(flattenedObjects[6].due).toContain('2025-01-05');
});

test('Sorting: Priority -> Projects ', () => {
Expand Down

0 comments on commit e827284

Please sign in to comment.