Skip to content

Commit f4ee08b

Browse files
authored
Release v1.0.0 (#55)
- bump minimum Julia version to 1.10 - update CI to test 'min', '1', and 'pre' Julia versions - fix CI badge
1 parent 19f7ca1 commit f4ee08b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/Documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: julia-actions/setup-julia@v2
1414
with:
15-
version: '1.6'
15+
version: '1.10'
1616
show-versioninfo: true
1717
- uses: actions/checkout@v4
1818
- uses: julia-actions/julia-buildpkg@latest

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.0'
19-
- '1.6'
18+
- 'min'
2019
- '1'
20+
- 'pre'
2121
- 'nightly'
2222
os:
2323
- ubuntu-latest

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name = "MethodAnalysis"
22
uuid = "85b6ec6f-f7df-4429-9514-a64bcd9ee824"
33
authors = ["Tim Holy <tim.holy@gmail.com>"]
4-
version = "0.4.13"
4+
version = "1.0.0"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
88

99
[compat]
1010
AbstractTrees = "0.3, 0.4.2"
11-
julia = "1"
11+
julia = "1.10"
1212

1313
[extras]
1414
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"

README.md

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

33
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://timholy.github.io/MethodAnalysis.jl/stable)
4-
[![Build Status](https://travis-ci.com/timholy/MethodAnalysis.jl.svg?branch=master)](https://travis-ci.com/timholy/MethodAnalysis.jl)
4+
[![CI](https://github.com/timholy/MethodAnalysis.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/timholy/MethodAnalysis.jl/actions/workflows/ci.yml)
55
[![Codecov](https://codecov.io/gh/timholy/MethodAnalysis.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/timholy/MethodAnalysis.jl)
66

77
This package is useful for inspecting Julia's internals, particularly its MethodInstances and their backedges. See the documentation for details.

0 commit comments

Comments
 (0)