Skip to content

Commit c4eef37

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
2 parents a884c60 + ab944b1 commit c4eef37

File tree

14 files changed

+55
-131
lines changed

14 files changed

+55
-131
lines changed

.DS_Store

-6 KB
Binary file not shown.

.github/workflows/CI.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
- x64
2323
steps:
2424
- uses: actions/checkout@v4
25-
- uses: julia-actions/setup-julia@v1
25+
- uses: julia-actions/setup-julia@v2
2626
with:
2727
version: ${{ matrix.version }}
2828
arch: ${{ matrix.arch }}
29-
- uses: actions/cache@v1
29+
- uses: actions/cache@v4
3030
env:
3131
cache-name: cache-artifacts
3232
with:
@@ -39,6 +39,7 @@ jobs:
3939
- uses: julia-actions/julia-buildpkg@v1
4040
- uses: julia-actions/julia-runtest@v1
4141
- uses: julia-actions/julia-processcoverage@v1
42-
- uses: codecov/codecov-action@v1
42+
- uses: codecov/codecov-action@v4
4343
with:
4444
file: lcov.info
45+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: which julia
1616
continue-on-error: true
1717
- name: Install Julia, but only if it is not already available in the PATH
18-
uses: julia-actions/setup-julia@v1
18+
uses: julia-actions/setup-julia@v2
1919
with:
2020
version: '1'
2121
arch: ${{ runner.arch }}

.github/workflows/Invalidations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.base_ref == github.event.repository.default_branch
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: julia-actions/setup-julia@v1
19+
- uses: julia-actions/setup-julia@v2
2020
with:
2121
version: '1'
2222
- uses: actions/checkout@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.jl.*.cov
33
*.jl.mem
44
deps/deps.jl
5+
.DS_Store

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords = ["math", "floating-point", "doubledouble", "extended-precision", "acc
44
license = "MIT"
55
desc = "extended precision floating point types using value pairs"
66
repo = "https://github.com/JuliaMath/DoubleFloats.jl.git"
7-
version = "1.3.3"
7+
version = "1.3.8"
88

99
[deps]
1010
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

docs/src/index.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Math with 85+ accurate bits.
44
#### Extended precision float and complex types
55

6-
- N.B. `Double64` is the most performant type <sup>[β](#involvement)</sup>
6+
- N.B. `Double64` is the most performant type [^β]
77

88
----
99

@@ -136,12 +136,10 @@ Usage questions can be posted on the [Julia Discourse forum](https://discourse.j
136136

137137
## Contributions
138138

139-
Contributions are very welcome, as are feature requests and suggestions. Please open an [issue](https://github.com/JuliaMath/DoubleFloats.jl/issues) if you encounter any problems. The [contributing page](https://juliamath.github.io/DoubleFloats.jl/latest/man/contributing/) has a few guidelines that should be followed when opening pull requests.
139+
Contributions are very welcome, as are feature requests and suggestions. Please open an [issue](https://github.com/JuliaMath/DoubleFloats.jl/issues) if you encounter any problems. The [contributing page](https://juliamath.github.io/DoubleFloats.jl/latest/#Contributions) has a few guidelines that should be followed when opening pull requests.
140140

141141
----
142142

143-
<a name="involvement">β</a>: If you want to get involved with moving `Double32` performance forward, great. I would provide guidance. Otherwise, for most purposes you are better off using `Float64` than `Double32` (`Float64` has more significant bits, wider exponent range, and is much faster).
143+
[^β]: If you want to get involved with moving `Double32` performance forward, great. I would provide guidance. Otherwise, for most purposes you are better off using `Float64` than `Double32` (`Float64` has more significant bits, wider exponent range, and is much faster).
144144

145145
----
146-
147-

docs/src/linearalgebra.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using DoubleFloats, LinearAlgebra
1414
n = 25
1515
vector = rand(Double64, n)
1616
matrix = reshape(rand(Double64,n*n),n,n)
17-
17+
```
1818

1919
## Matrix Predicates
2020

@@ -54,5 +54,3 @@ matrix = reshape(rand(Double64,n*n),n,n)
5454
- `asinh`, `acosh`, `atanh`, `acsch`, `asech`, `acoth`
5555

5656
- matrixfunction(function, matrix)
57-
58-

src/.DS_Store

-6 KB
Binary file not shown.

src/Double64.jl

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

0 commit comments

Comments
 (0)