Skip to content

Commit a2116b9

Browse files
committed
ci: use llvm 20 to build minijson
1 parent 8236112 commit a2116b9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
d:
1717
- "ldc-latest"
1818
compiler:
19-
- llvm-15
19+
- llvm-20
2020
include:
2121
- os: macos-14 # arm64
2222
d: "ldc-latest"
23-
compiler: "llvm-15"
23+
compiler: "llvm-20"
2424
- os: macos-13 # x86
2525
d: "ldc-latest"
26-
compiler: "llvm-15"
26+
compiler: "llvm-20"
2727

2828
steps:
2929
- uses: actions/checkout@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aminya/minijson",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Minify JSON files blazing fast, removing comments/whitespace.",
55
"homepage": "https://github.com/aminya/minijson",
66
"repository": {

src/native/cli.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ struct Options
2222
{
2323
bool comment = true;
2424
string[] str;
25-
// (Deprecated) A list of files to minify (for backwards compatiblitity with getopt)
25+
// (Deprecated) A list of files to minify (for backwards compatibility with getopt)
2626
string[] file;
2727
}
2828

0 commit comments

Comments
 (0)