Skip to content

Commit e37adc5

Browse files
authored
ForwardDiff compat (#22)
* Bump ForwardDiff compat * release v1.4.1 * upgrade workflows * loosen dev dependencies --------- Co-authored-by: Christopher Doris <github.com/cjdoris>
1 parent 4eb0546 commit e37adc5

File tree

2 files changed

+8
-17
lines changed

2 files changed

+8
-17
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,15 @@ jobs:
1818
os: [ubuntu-latest]
1919
jlversion: ['1','1.6']
2020
steps:
21-
- uses: actions/checkout@v2
22-
- uses: julia-actions/setup-julia@v1
21+
- uses: actions/checkout@v4
22+
- uses: julia-actions/setup-julia@v2
2323
with:
2424
version: ${{ matrix.jlversion }}
2525
arch: ${{ matrix.arch }}
26-
- uses: actions/cache@v1
27-
env:
28-
cache-name: cache-artifacts
29-
with:
30-
path: ~/.julia/artifacts
31-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
32-
restore-keys: |
33-
${{ runner.os }}-test-${{ env.cache-name }}-
34-
${{ runner.os }}-test-
35-
${{ runner.os }}-
26+
- uses: julia-actions/cache@v2
3627
- uses: julia-actions/julia-buildpkg@v1
3728
- uses: julia-actions/julia-runtest@v1
3829
- uses: julia-actions/julia-processcoverage@v1
39-
- uses: codecov/codecov-action@v1
30+
- uses: codecov/codecov-action@v5
4031
with:
4132
file: lcov.info

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LogarithmicNumbers"
22
uuid = "aa2f6b4e-9042-5d33-9679-40d3a6b85899"
33
authors = ["Christopher Doris"]
4-
version = "1.4.0"
4+
version = "1.4.1"
55

66
[deps]
77
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
@@ -13,10 +13,10 @@ ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
1313
LogarithmicNumbersForwardDiffExt = "ForwardDiff"
1414

1515
[compat]
16-
Aqua = "0.8"
17-
ForwardDiff = "0.10"
16+
Aqua = "0 - 999"
17+
ForwardDiff = "0.10, 1"
1818
Random = "1"
19-
Test = "1"
19+
Test = "0 - 999"
2020
julia = "1.6"
2121

2222
[extras]

0 commit comments

Comments
 (0)