diff --git a/README.md b/README.md index a36c523..f7e0403 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ List items = await _client.GetMonitors(); Get monitors by ID - or a single monitor: ```csharp -List items = await _client.GetMonitors(new string[]{ 12891, 98711 }); +List items = await _client.GetMonitors(new string[]{ "12891", "98711" }); // or Monitor item = await _client.GetMonitor("12891"); ``` diff --git a/UptimeSharp/Properties/AssemblyInfo.cs b/UptimeSharp/Properties/AssemblyInfo.cs index 76ce639..e32c18a 100644 --- a/UptimeSharp/Properties/AssemblyInfo.cs +++ b/UptimeSharp/Properties/AssemblyInfo.cs @@ -22,5 +22,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.0.0")] -[assembly: AssemblyFileVersion("2.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("2.0.0.1")] +[assembly: AssemblyFileVersion("2.0.0.1")] \ No newline at end of file