Skip to content

Commit

Permalink
Update compat, set version to 0.2.1 (#5)
Browse files Browse the repository at this point in the history
* Update Documenter compat to 0.26
* Move CI to GitHub Actions
* Set version to 0.2.1
  • Loading branch information
mortenpi committed Dec 9, 2020
1 parent 22fdcc9 commit 84d5a11
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 55 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '0.7'
- '1.0'
- '1'
- 'nightly'
os:
- ubuntu-latest
- windows-latest
- macos-latest
arch:
- x64
include:
- os: ubuntu-latest
version: '1'
arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# DocumenterMarkdown.jl changelog

## Version `v0.2.1`

* Declare compatibility with Documenter 0.26. ([#5][github-5])

## Version `v0.2.0`

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


[github-3]: https://github.com/JuliaDocs/DocumenterMarkdown.jl/pull/3
[github-5]: https://github.com/JuliaDocs/DocumenterMarkdown.jl/pull/5


[badge-breaking]: https://img.shields.io/badge/BREAKING-red.svg
Expand Down
6 changes: 5 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name = "DocumenterMarkdown"
uuid = "997ab1e6-3595-5248-9280-8efb232c3433"
version = "0.1.0"
version = "0.2.1"

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

[compat]
julia = "0.7, 1"
Documenter = "0.20, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

Expand Down
37 changes: 0 additions & 37 deletions appveyor.yml

This file was deleted.

2 comments on commit 84d5a11

@mortenpi
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Maintenance release for updating compatibility bounds. The changes are documented in the CHANGELOG.md file.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/26092

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.1 -m "<description of version>" 84d5a119fd9a559d61bfde9f79a1b6224d89526c
git push origin v0.2.1

Please sign in to comment.