Skip to content

Commit 56fb1c4

Browse files
committed
chore(release): 0.6.0
1 parent 96cc75f commit 56fb1c4

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v2
3838
with:
39-
submodules: 'true'
39+
submodules: "true"
4040

4141
# Cache
4242
- name: Cache

Readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# minijson
22

3-
Minify JSON files **blazing fast**! Supports Comments. Written in D.
3+
Minify JSON files **blazing fast**! Supports Comments. Uses D, C, and AVX2 and SSE4_1 SIMD.
44

55
4180 times faster than jsonminify!
66

@@ -14,11 +14,11 @@ Minify JSON files **blazing fast**! Supports Comments. Written in D.
1414
npm install @aminya/minijson
1515
```
1616

17-
- CLI Binaries
17+
- Native CLI Binaries (Windows, MacOS, Linux)
1818

19-
You can also download the binaries for the CLI from the release page:
19+
You can download the native binaries for the CLI from the release page:
2020

21-
https://github.com/aminya/minijson/releases/tag/v0.5.1
21+
https://github.com/aminya/minijson/releases/tag/v0.6.0
2222

2323
- Dub
2424

@@ -96,10 +96,10 @@ On AMD Ryzen 7 4800H:
9696

9797
```
9898
❯ .\dist\minijson-benchmark.exe --benchmark-minifyString --benchmark-minifyFiles
99-
Benchmark minifyFiles
100-
49 ms
10199
Benchmark minifyString
102100
14 ms
101+
Benchmark minifyFiles
102+
49 ms
103103
104104
❯ node .\benchmark\js-benchmark.mjs
105105
Benchmark minifyString

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@aminya/minijson",
33
"author": "Amin Yahyaabdi",
44
"version": "0.5.1",
5-
"description": "Minify JSON files blazing fast! Supports Comments. Written in D.",
5+
"description": "Minify JSON files blazing fast! Supports Comments. Uses D, C, and AVX2 and SSE4_1 SIMD",
66
"homepage": "https://github.com/aminya/minijson",
77
"license": "MIT",
88
"files": [
@@ -89,6 +89,14 @@
8989
"blazing",
9090
"d",
9191
"c",
92+
"simd",
93+
"avx",
94+
"sse",
95+
"sse3",
96+
"sse4",
97+
"sse4.1",
98+
"sse4.2",
99+
"avx2",
92100
"rust",
93101
"bandwith"
94102
]

src/native/lib.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module minijson.lib;
22

3-
import std : ctRegex, matchAll, matchFirst, toStringz;
3+
import std : ctRegex, matchAll, matchFirst;
44

55
import despacer.simd_check : supports_sse4_1, supports_avx2;
66

0 commit comments

Comments
 (0)