Skip to content

Commit 7cbf507

Browse files
authored
Merge pull request #198 from JuliaAI/dev
For a 3.1 release
2 parents 78556d9 + de96048 commit 7cbf507

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
version:
20-
- '1.0'
20+
- '1.10'
2121
- '1' # automatically expands to the latest stable 1.x release of Julia.
2222
os:
2323
- ubuntu-latest
@@ -42,9 +42,11 @@ jobs:
4242
- uses: julia-actions/julia-buildpkg@v1
4343
- uses: julia-actions/julia-runtest@v1
4444
- uses: julia-actions/julia-processcoverage@v1
45-
- uses: codecov/codecov-action@v1
45+
- uses: codecov/codecov-action@v4
4646
with:
47-
file: lcov.info
47+
token: ${{ secrets.CODECOV_TOKEN }}
48+
fail_ci_if_error: false
49+
verbose: true
4850
docs:
4951
name: Documentation
5052
runs-on: ubuntu-latest

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ScientificTypes"
22
uuid = "321657f4-b219-11e9-178b-2701a2544e81"
33
authors = ["Anthony D. Blaom <[email protected]>"]
4-
version = "3.0.2"
4+
version = "3.1.0"
55

66
[deps]
77
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
@@ -16,14 +16,14 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
1616

1717
[compat]
1818
CategoricalArrays = "0.8, 0.9, 0.10"
19-
ColorTypes = "0.9, 0.10, 0.11"
19+
ColorTypes = "0.9, 0.10, 0.11, 0.12"
2020
Distributions = "0.25.1"
2121
PrettyTables = "1, 2"
2222
Reexport = "1.2"
2323
ScientificTypesBase = "3.0"
2424
StatisticalTraits = "3.0"
2525
Tables = "1.6.1"
26-
julia = "1"
26+
julia = "1.10"
2727

2828
[extras]
2929
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
| Linux | Coverage | Documentation |
44
| :-----------: | :------: | :-----------: |
5-
| [![Build Status](https://github.com/JuliaAI/ScientificTypes.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/ScientificTypes.jl/actions) | [![codecov.io](http://codecov.io/github/JuliaAI/ScientificTypes.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaAI/ScientificTypes.jl?branch=master) | [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAI.github.io/ScientificTypes.jl/dev)
5+
| [![Build Status](https://github.com/JuliaAI/ScientificTypes.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/ScientificTypes.jl/actions) | [![codecov](https://codecov.io/gh/JuliaAI/ScientificTypes.jl/graph/badge.svg?token=t7KNmNGLvj)](https://codecov.io/gh/JuliaAI/ScientificTypes.jl) | [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAI.github.io/ScientificTypes.jl/dev)
66

77
This package makes a distinction between **machine type** and
88
**scientific type** of a Julia object:

0 commit comments

Comments
 (0)