diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 0000000..d77d3a0 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,11 @@ +name: TagBot +on: + schedule: + - cron: 0 * * * * +jobs: + TagBot: + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.travis.yml b/.travis.yml index 591ea94..6461be3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,11 @@ julia: - 1.1 - 1.2 - 1.3 + - 1.4 - nightly matrix: allow_failures: + - julia: 1.4 - julia: nightly after_success: - julia --project -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' diff --git a/Project.toml b/Project.toml index 5ff5bb5..4307038 100644 --- a/Project.toml +++ b/Project.toml @@ -1,12 +1,8 @@ name = "FunctionWrappers" uuid = "069b7b12-0de2-55c6-9aab-29f3d0a68a2e" -version = "1.1.0" - -[deps] -Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" +version = "1.1.1" [compat] -Compat = "2.2, 3.0" julia = "1" [extras] diff --git a/appveyor.yml b/appveyor.yml index b67d181..dfb5dbe 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,6 +4,7 @@ environment: - julia_version: 1.1 - julia_version: 1.2 - julia_version: 1.3 + - julia_version: 1.4 - julia_version: nightly platform: @@ -12,6 +13,7 @@ platform: matrix: allow_failures: + - julia_version: 1.4 - julia_version: latest branches: diff --git a/src/FunctionWrappers.jl b/src/FunctionWrappers.jl index 29ce468..032a2ec 100644 --- a/src/FunctionWrappers.jl +++ b/src/FunctionWrappers.jl @@ -4,8 +4,6 @@ __precompile__(true) module FunctionWrappers -using Compat - # Used to bypass NULL check @inline function assume(v::Bool) Base.llvmcall(("declare void @llvm.assume(i1)", diff --git a/test/runtests.jl b/test/runtests.jl index f865a53..966b2c2 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,8 +2,7 @@ import FunctionWrappers import FunctionWrappers: FunctionWrapper -using Compat -using Compat.Test +using Test struct CallbackF64 f::FunctionWrapper{Float64,Tuple{Int}}