Skip to content

Commit

Permalink
chore(release): 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jul 11, 2021
1 parent 96cc75f commit 56fb1c4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
submodules: "true"

# Cache
- name: Cache
Expand Down
12 changes: 6 additions & 6 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# minijson

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

4180 times faster than jsonminify!

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

- CLI Binaries
- Native CLI Binaries (Windows, MacOS, Linux)

You can also download the binaries for the CLI from the release page:
You can download the native binaries for the CLI from the release page:

https://github.com/aminya/minijson/releases/tag/v0.5.1
https://github.com/aminya/minijson/releases/tag/v0.6.0

- Dub

Expand Down Expand Up @@ -96,10 +96,10 @@ On AMD Ryzen 7 4800H:

```
❯ .\dist\minijson-benchmark.exe --benchmark-minifyString --benchmark-minifyFiles
Benchmark minifyFiles
49 ms
Benchmark minifyString
14 ms
Benchmark minifyFiles
49 ms
❯ node .\benchmark\js-benchmark.mjs
Benchmark minifyString
Expand Down
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@aminya/minijson",
"author": "Amin Yahyaabdi",
"version": "0.5.1",
"description": "Minify JSON files blazing fast! Supports Comments. Written in D.",
"description": "Minify JSON files blazing fast! Supports Comments. Uses D, C, and AVX2 and SSE4_1 SIMD",
"homepage": "https://github.com/aminya/minijson",
"license": "MIT",
"files": [
Expand Down Expand Up @@ -89,6 +89,14 @@
"blazing",
"d",
"c",
"simd",
"avx",
"sse",
"sse3",
"sse4",
"sse4.1",
"sse4.2",
"avx2",
"rust",
"bandwith"
]
Expand Down
2 changes: 1 addition & 1 deletion src/native/lib.d
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module minijson.lib;

import std : ctRegex, matchAll, matchFirst, toStringz;
import std : ctRegex, matchAll, matchFirst;

import despacer.simd_check : supports_sse4_1, supports_avx2;

Expand Down

0 comments on commit 56fb1c4

Please sign in to comment.