From 2e9fbac45bb030446f0dbb5b1e9e9cf52e092a4d Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Wed, 26 Feb 2020 19:30:17 -0800 Subject: [PATCH 1/4] Add TagBot --- .github/workflows/TagBot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/TagBot.yml 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 }} From c37f0b4dd76d5716bbe68dbb8d31764507d4e343 Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Wed, 26 Feb 2020 19:30:34 -0800 Subject: [PATCH 2/4] Test against Julia 1.4 --- .travis.yml | 2 ++ appveyor.yml | 2 ++ 2 files changed, 4 insertions(+) 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/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: From 9e912d88e44bff7e8dfdf0083fdb5c59b935fb8e Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Wed, 26 Feb 2020 19:31:07 -0800 Subject: [PATCH 3/4] Remove Compat as dependency --- Project.toml | 4 ---- src/FunctionWrappers.jl | 2 -- test/runtests.jl | 3 +-- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/Project.toml b/Project.toml index 5ff5bb5..8da360c 100644 --- a/Project.toml +++ b/Project.toml @@ -2,11 +2,7 @@ name = "FunctionWrappers" uuid = "069b7b12-0de2-55c6-9aab-29f3d0a68a2e" version = "1.1.0" -[deps] -Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" - [compat] -Compat = "2.2, 3.0" julia = "1" [extras] 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}} From 05c21959adaf9b71214ec325c00571df37f6562a Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Wed, 26 Feb 2020 19:31:21 -0800 Subject: [PATCH 4/4] Bump version number --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 8da360c..4307038 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "FunctionWrappers" uuid = "069b7b12-0de2-55c6-9aab-29f3d0a68a2e" -version = "1.1.0" +version = "1.1.1" [compat] julia = "1"