Bump version to 1.0.0 and update README with download links and images

This commit is contained in:
Bogdan
2026-06-15 13:50:30 +03:00
parent 5f389bee0f
commit 53b37d281b
6 changed files with 32 additions and 8 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ describe('detectSnippet', () => {
});
it('detects a json blob as code/json', () => {
const result = detectSnippet('{\n "name": "faro",\n "version": "0.1.0"\n}');
const result = detectSnippet('{\n "name": "faro",\n "version": "1.0.0"\n}');
expect(result.content_type).toBe('code');
expect(result.language).toBe('json');
});