Skip to content

Commit

Permalink
Version 0.2.2 (#32)
Browse files Browse the repository at this point in the history
This also adds the CI action on GitHub actions, and the test on ARM64.
  • Loading branch information
kimikage authored Sep 6, 2020
1 parent 7d367da commit eb4e263
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 8 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:
- '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

12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
language: julia
os:
- osx
- linux
- windows
julia:
- 1.0
- 1
- nightly
- '1'
arch:
- x64
- arm64
notifications:
email: false
jobs:
include:
- stage: "Documentation"
julia: 1
julia: '1'
os: linux
arch: x64
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ColorBlendModes"
uuid = "60508b50-96e1-4007-9d6c-f475c410f16b"
version = "0.2.1"
version = "0.2.2"

[deps]
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Docs Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://kimikage.github.io/ColorBlendModes.jl/stable)
[![Docs Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://kimikage.github.io/ColorBlendModes.jl/dev)
[![Build Status](https://travis-ci.com/kimikage/ColorBlendModes.jl.svg?branch=master)](https://travis-ci.com/kimikage/ColorBlendModes.jl)
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/C/ColorBlendModes.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
[![Codecov](https://codecov.io/gh/kimikage/ColorBlendModes.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/kimikage/ColorBlendModes.jl)

This package provides the definitions and compositing operations of the
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
PNGFiles = "f57f5aa1-a3ce-4bc8-8ab9-96f992907883"

[compat]
Documenter = "0.24"
Documenter = "0.25"
julia = "1"

2 comments on commit eb4e263

@kimikage
Copy link
Owner Author

Choose a reason for hiding this comment

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

@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/20965

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.2 -m "<description of version>" eb4e263c43de566cb8e5224427370af12596de5b
git push origin v0.2.2

Please sign in to comment.