Skip to content

Commit 84d5a11

Browse files
authored
Update compat, set version to 0.2.1 (#5)
* Update Documenter compat to 0.26 * Move CI to GitHub Actions * Set version to 0.2.1
1 parent 22fdcc9 commit 84d5a11

File tree

5 files changed

+57
-55
lines changed

5 files changed

+57
-55
lines changed

.github/workflows/CI.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
version:
12+
- '0.7'
13+
- '1.0'
14+
- '1'
15+
- 'nightly'
16+
os:
17+
- ubuntu-latest
18+
- windows-latest
19+
- macos-latest
20+
arch:
21+
- x64
22+
include:
23+
- os: ubuntu-latest
24+
version: '1'
25+
arch: x86
26+
steps:
27+
- uses: actions/checkout@v2
28+
- uses: julia-actions/setup-julia@v1
29+
with:
30+
version: ${{ matrix.version }}
31+
arch: ${{ matrix.arch }}
32+
show-versioninfo: true
33+
- uses: actions/cache@v1
34+
env:
35+
cache-name: cache-artifacts
36+
with:
37+
path: ~/.julia/artifacts
38+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
39+
restore-keys: |
40+
${{ runner.os }}-test-${{ env.cache-name }}-
41+
${{ runner.os }}-test-
42+
${{ runner.os }}-
43+
- uses: julia-actions/julia-runtest@latest
44+
- uses: julia-actions/julia-processcoverage@v1
45+
- uses: codecov/codecov-action@v1
46+
with:
47+
file: lcov.info

.travis.yml

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

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# DocumenterMarkdown.jl changelog
22

3+
## Version `v0.2.1`
4+
5+
* Declare compatibility with Documenter 0.26. ([#5][github-5])
6+
37
## Version `v0.2.0`
48

59
* ![Enhancement][badge-enhancement] Now defines and exports the `Markdown` type
@@ -12,6 +16,7 @@
1216

1317

1418
[github-3]: https://github.com/JuliaDocs/DocumenterMarkdown.jl/pull/3
19+
[github-5]: https://github.com/JuliaDocs/DocumenterMarkdown.jl/pull/5
1520

1621

1722
[badge-breaking]: https://img.shields.io/badge/BREAKING-red.svg

Project.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name = "DocumenterMarkdown"
22
uuid = "997ab1e6-3595-5248-9280-8efb232c3433"
3-
version = "0.1.0"
3+
version = "0.2.1"
44

55
[deps]
66
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
77

8+
[compat]
9+
julia = "0.7, 1"
10+
Documenter = "0.20, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26"
11+
812
[extras]
913
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1014

appveyor.yml

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

0 commit comments

Comments
 (0)