Skip to content

Commit 0ace3f1

Browse files
committed
Release 0.5.1.13
1 parent 244ae24 commit 0ace3f1

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed
Binary file not shown.

Elastacloud.AzureManagement.Fluent/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
[assembly: GuidAttribute("909b2b8c-10bf-4f0d-a94e-208ef3bdca52")]
1313
[assembly: InternalsVisibleToAttribute("DynamicProxyGenAssembly2")]
1414
[assembly: InternalsVisibleToAttribute("Elastacloud.AzureManagement.Fluent.Tests")]
15-
[assembly: AssemblyVersionAttribute("0.5.1.12")]
16-
[assembly: AssemblyFileVersionAttribute("0.5.1.12")]
15+
[assembly: AssemblyVersionAttribute("0.5.1.13")]
16+
[assembly: AssemblyFileVersionAttribute("0.5.1.13")]
1717
namespace System {
1818
internal static class AssemblyVersionInformation {
19-
internal const string Version = "0.5.1.12";
19+
internal const string Version = "0.5.1.13";
2020
}
2121
}

Elastacloud.FluentManagement.FSTest/VirtualMachines.fsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ let sshEndpoint = InputEndpoint(EndpointName = "ssh",
4242
Port = Nullable(22),
4343
Protocol = Protocol.TCP)
4444
let properties = new LinuxVirtualMachineProperties(
45-
VmSize = VmSize.STANDARD_D1,
45+
VmSize = VmSize.Standard_D1,
4646
UserName = "azurecoder",
4747
AdministratorPassword = "P@ssword761",
4848
HostName = "briskit",
4949
RoleName = "briskit",
5050
CloudServiceName = "briskit1003",
5151
PublicEndpoints = List<InputEndpoint>([|sshEndpoint|]),
52-
CustomTemplateName = "b39f27a8b8c64d52b05eac6a62ebad8__Ubuntu-14_10-amd64-server-20141204-en-us-30GB",
52+
CustomTemplateName = "b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB",
5353
DeploymentName = "briskit1003",
5454
StorageAccountName = "clustered")//,
5555
//VirtualNetwork = VirtualNetworkDescriptor(
@@ -63,6 +63,8 @@ try
6363
"briskit1003") |> ignore
6464
with
6565
| :? ApplicationException as fmwe -> printfn "%s" fmwe.Message |> ignore
66+
let hosts = vmClient.GetHostDetails("briskit1003")
67+
vmClient.GetCurrentUbuntuImage()
6668

6769

6870
// test 1: Ensure that above contains no subnets when it's created and returns the address range + 1 ip

package.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open Fake.Git.Staging
99
Environment.CurrentDirectory <- __SOURCE_DIRECTORY__
1010

1111
[<Literal>]
12-
let version = "0.5.1.12"
12+
let version = "0.5.1.13"
1313
// 1. Increment the minor number assemblyinfo version
1414
CreateCSharpAssemblyInfo (sprintf @"%s\Elastacloud.AzureManagement.Fluent\Properties\AssemblyInfo.cs" Environment.CurrentDirectory) [Attribute.Title("Elastacloud.AzureManagement.Fluent")
1515
Attribute.Description("Library used for management of Windows Azure services, SQL, storage, networking, WASD, WAMS and VM's")

0 commit comments

Comments
 (0)