diff --git a/src/WireMock.Net.StandAlone/StandAloneApp.cs b/src/WireMock.Net.StandAlone/StandAloneApp.cs index fa4e098c..03dab9b7 100644 --- a/src/WireMock.Net.StandAlone/StandAloneApp.cs +++ b/src/WireMock.Net.StandAlone/StandAloneApp.cs @@ -11,7 +11,6 @@ namespace WireMock.Net.StandAlone /// /// The StandAloneApp /// - [Obsolete("This class will be removed in version 1.1.0")] public static class StandAloneApp { /// @@ -19,7 +18,6 @@ namespace WireMock.Net.StandAlone /// /// The FluentMockServerSettings [PublicAPI] - [Obsolete("Will be replaced by WireMockServer.Start(settings) in version 1.1.0")] public static FluentMockServer Start([NotNull] IFluentMockServerSettings settings) { Check.NotNull(settings, nameof(settings)); @@ -37,7 +35,6 @@ namespace WireMock.Net.StandAlone /// The commandline arguments /// The logger [PublicAPI] - [Obsolete("Will be replaced by `var settings = WireMockServerSettingsParser.ParseArguments(args, logger); WireMockServer.Start(settings);` in version 1.1.0")] public static FluentMockServer Start([NotNull] string[] args, [CanBeNull] IWireMockLogger logger = null) { Check.NotNull(args, nameof(args)); diff --git a/src/WireMock.Net/Server/FluentMockServer.cs b/src/WireMock.Net/Server/FluentMockServer.cs index 8ca4c17a..04f46ff6 100644 --- a/src/WireMock.Net/Server/FluentMockServer.cs +++ b/src/WireMock.Net/Server/FluentMockServer.cs @@ -25,7 +25,7 @@ namespace WireMock.Server /// /// The fluent mock server. /// - [Obsolete("Will be replaced by WireMockServer in version 1.1.0")] + [Obsolete("Will be replaced by WireMockServer in version 2.x.x")] public partial class FluentMockServer : IDisposable { private const int ServerStartDelayInMs = 100; diff --git a/src/WireMock.Net/Settings/FluentMockServerSettings.cs b/src/WireMock.Net/Settings/FluentMockServerSettings.cs index b3035984..7c4d09bb 100644 --- a/src/WireMock.Net/Settings/FluentMockServerSettings.cs +++ b/src/WireMock.Net/Settings/FluentMockServerSettings.cs @@ -10,7 +10,7 @@ namespace WireMock.Settings /// /// FluentMockServerSettings /// - [Obsolete("Will be replaced by WireMockServerSettings in version 1.1.0")] + [Obsolete("Will be replaced by WireMockServerSettings in version 2.x.x")] public class FluentMockServerSettings : IFluentMockServerSettings { /// diff --git a/src/WireMock.Net/Settings/IFluentMockServerSettings.cs b/src/WireMock.Net/Settings/IFluentMockServerSettings.cs index 7c10a367..f33afeab 100644 --- a/src/WireMock.Net/Settings/IFluentMockServerSettings.cs +++ b/src/WireMock.Net/Settings/IFluentMockServerSettings.cs @@ -9,7 +9,7 @@ namespace WireMock.Settings /// /// IFluentMockServerSettings /// - [Obsolete("This interface will be removed and replaced by the class WireMockServerSettings in version 1.1.0")] + [Obsolete("This interface will be removed and replaced by the class WireMockServerSettings in version 2.x.x")] public interface IFluentMockServerSettings { /// diff --git a/src/WireMock.Net/Settings/IProxyAndRecordSettings.cs b/src/WireMock.Net/Settings/IProxyAndRecordSettings.cs index 6f291074..7d2e9db8 100644 --- a/src/WireMock.Net/Settings/IProxyAndRecordSettings.cs +++ b/src/WireMock.Net/Settings/IProxyAndRecordSettings.cs @@ -7,7 +7,7 @@ namespace WireMock.Settings /// /// IProxyAndRecordSettings /// - [Obsolete("This interface will be removed and replaced by the class ProxyAndRecordSettings in version 1.1.0")] + [Obsolete("This interface will be removed and replaced by the class ProxyAndRecordSettings in version 2.x.x")] public interface IProxyAndRecordSettings { ///