Skip to content

Commit d5d8fe3

Browse files
authored
Merge pull request #31 from JuliaAI/json-compat-extend
Extend JSON compat to include "1.0"
2 parents 6721dd1 + 21e3537 commit d5d8fe3

File tree

9 files changed

+14
-413
lines changed

9 files changed

+14
-413
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,22 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
julia-version:
18-
- "1.6"
19-
- "1.10"
18+
- "lts"
2019
- "1"
21-
- "nightly"
2220
os:
2321
- ubuntu-latest
2422
- macos-latest
2523
- windows-latest
2624
julia-arch:
2725
- x64
2826
steps:
29-
- uses: actions/checkout@v2
30-
- uses: julia-actions/setup-julia@v1
27+
- uses: actions/checkout@v6
28+
- uses: julia-actions/setup-julia@v2
3129
with:
3230
version: ${{ matrix.julia-version }}
3331
arch: ${{ matrix.julia-arch }}
3432
- name: Cache artifacts
35-
uses: actions/cache@v2
33+
uses: julia-actions/cache@v2
3634
env:
3735
cache-name: cache-artifacts
3836
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Manifest.toml
44
#*
55
.DS_Store
66
sandbox/
7+
/docs/build/
78
/docs/site/
89
/docs/Manifest.toml
910
.vscode

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ version = "0.3.2"
55

66
[deps]
77
ARFFFiles = "da404889-ca92-49ff-9e8b-0aa6b4d38dc8"
8+
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
89
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
910
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
1011
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
@@ -13,15 +14,16 @@ Scratch = "6c6a2e73-6563-6170-7368-637461726353"
1314

1415
[compat]
1516
ARFFFiles = "1.4.1"
17+
Downloads = "1.6.0"
1618
HTTP = "0.8, 0.9, 1"
17-
JSON = "0.21"
19+
JSON = "0.21, 1"
1820
Scratch = "1.1"
1921
julia = "1.6"
2022

2123
[extras]
24+
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
2225
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
2326
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
24-
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
2527

2628
[targets]
2729
test = ["Tables", "Test", "Logging"]

docs/build/assets/Documenter.css

Lines changed: 0 additions & 18 deletions
This file was deleted.

docs/build/assets/mathjaxhelper.js

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)