diff --git a/CHANGELOG.md b/CHANGELOG.md index f932183..ae44ae3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] + +## [2.1.3] - 2021-01-21 +- Fixed server mode startup + ## [2.1.0] - 2021-01-18 - Removed deprecations from 2.0.X @@ -69,7 +73,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 1.0.0 - 2020-09-28 -[Unreleased]: https://github.com/vseinstrumentiru/lego/compare/v2.1.0...HEAD +[Unreleased]: https://github.com/vseinstrumentiru/lego/compare/v2.1.3...HEAD +[2.1.3]: https://github.com/vseinstrumentiru/lego/compare/v2.1.0...v2.1.3 [2.1.0]: https://github.com/vseinstrumentiru/lego/compare/v2.0.10...v2.1.0 [2.0.10]: https://github.com/vseinstrumentiru/lego/compare/v2.0.8.1...v2.0.10 diff --git a/internal/provide/all.go b/internal/provide/all.go index 3c6f42d..fb54ca2 100644 --- a/internal/provide/all.go +++ b/internal/provide/all.go @@ -11,7 +11,7 @@ func All(runtime config.Runtime) []interface{} { res = append(res, Minimal()...) - if runtime.Not(config.ServerMode) { + if runtime.Is(config.ServerMode) { res = append(res, Monitoring()...) res = append(res, Pipeline()...) }