From d347178e69a4dcddb08a5a698c8f1ae2b67d6aad Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 17 Oct 2020 02:34:29 -0500 Subject: [PATCH] Deprecate SnoopCompileBot in favor of CompileBot (#140) --- SnoopCompileBot/Project.toml | 13 +++++++++++++ SnoopCompileBot/README.md | 3 +++ SnoopCompileBot/src/SnoopCompileBot.jl | 11 +++++++++++ 3 files changed, 27 insertions(+) create mode 100644 SnoopCompileBot/Project.toml create mode 100644 SnoopCompileBot/README.md create mode 100644 SnoopCompileBot/src/SnoopCompileBot.jl diff --git a/SnoopCompileBot/Project.toml b/SnoopCompileBot/Project.toml new file mode 100644 index 000000000..15662543c --- /dev/null +++ b/SnoopCompileBot/Project.toml @@ -0,0 +1,13 @@ +name = "SnoopCompileBot" +uuid = "1d5e0e55-7d74-4714-b8d8-efa80e938cf7" +author = ["Amin Yahyaabadi "] +version = "2.0.0" + +[deps] +CompileBot = "877fb49a-56b0-480a-9049-319c0c353852" +Reexport = "189a3867-3050-52da-a836-e630ba90ab69" + +[compat] +CompileBot = "< 2" +Reexport = "0.2" +julia = "1" diff --git a/SnoopCompileBot/README.md b/SnoopCompileBot/README.md new file mode 100644 index 000000000..9a2c67f25 --- /dev/null +++ b/SnoopCompileBot/README.md @@ -0,0 +1,3 @@ +# SnoopCompileBot + +This package is deprecated and renamed to CompileBot. See https://github.com/aminya/CompileBot.jl. diff --git a/SnoopCompileBot/src/SnoopCompileBot.jl b/SnoopCompileBot/src/SnoopCompileBot.jl new file mode 100644 index 000000000..ad890f0d1 --- /dev/null +++ b/SnoopCompileBot/src/SnoopCompileBot.jl @@ -0,0 +1,11 @@ +module SnoopCompileBot + +@warn """This package is deprecated and renamed to CompileBot. See https://github.com/aminya/CompileBot.jl for more information.""" + +using Reexport + +@reexport using CompileBot + + + +end # module