diff --git a/LICENSE.md b/LICENSE.md index abf8e94..13da8f5 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,7 @@ The LoggingExtras.jl package is licensed under the MIT "Expat" License: -> Copyright (c) 2018: Lyndon White +> Copyright (c) 2022: Frames White and Collaborators +> https://github.com/JuliaLogging/LoggingExtras.jl/graphs/contributors > > Permission is hereby granted, free of charge, to any person obtaining a copy > of this software and associated documentation files (the "Software"), to deal diff --git a/Project.toml b/Project.toml index 3f56c30..2d4b82c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "LoggingExtras" uuid = "e6f89c97-d47a-5376-807f-9c37f3926c36" -authors = ["Lyndon White "] -version = "0.4.9" +authors = ["Frames White ", "Collaborators "] +version = "1.0.0" [deps] Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" diff --git a/src/deprecated.jl b/src/deprecated.jl index 75a56c5..04ac2d2 100644 --- a/src/deprecated.jl +++ b/src/deprecated.jl @@ -1,5 +1 @@ - -Base.@deprecate( - DemuxLogger(loggers::Vararg{AbstractLogger}; include_current_global=true), - include_current_global ? TeeLogger(global_logger(), loggers...) : TeeLogger(loggers...) -) +# There are currently no deprecations. \ No newline at end of file diff --git a/test/runtests.jl b/test/runtests.jl index 83d66ca..90cbbe3 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -293,23 +293,5 @@ end end @testset "Deprecations" begin - testlogger = TestLogger(min_level=BelowMinLevel) - - @test_logs (:warn, r"deprecated") match_mode=:any begin - demux_logger = DemuxLogger(testlogger) - @test demux_logger isa TeeLogger - @test Set(demux_logger.loggers) == Set([testlogger, global_logger()]) - end - - @test_logs (:warn, r"deprecated") match_mode=:any begin - demux_logger = DemuxLogger(testlogger; include_current_global=true) - @test demux_logger isa TeeLogger - @test Set(demux_logger.loggers) == Set([testlogger, global_logger()]) - end - - @test_logs (:warn, r"deprecated") match_mode=:any begin - demux_logger = DemuxLogger(testlogger; include_current_global=false) - @test demux_logger isa TeeLogger - @test Set(demux_logger.loggers) == Set([testlogger]) - end + # Nothing is currently deprecated end