Skip to content

Commit

Permalink
Preparation for a stable release (#13)
Browse files Browse the repository at this point in the history
- Minimum Xamarin.Forms 3.3.0.912540
- Drop `-pre` in NuGet version, unsure if I need to append .1 yet?
- Changed `NuGet-Package-*` cake targets so I can push via artifacts produced by CI
- Update README.md
  • Loading branch information
jonathanpeppers committed Oct 30, 2018
1 parent 3833d58 commit d8425a2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -61,6 +61,8 @@ So instead, I found it much easier to measure memory usage. I wrote a quick clas

Here is a table of peak memory used via the different sample pages I've written:

_NOTE: this was a past comparison with Xamarin.Forms 2.5.x_

| Page | Loaded by | Peak Memory Usage |
| --- | --- | ---: |
| GridPage | Xamarin.Forms | 268,387,112 |
Expand Down
4 changes: 1 addition & 3 deletions build.cake
Expand Up @@ -20,7 +20,7 @@ var dirs = new[]
string output = dirs[0];
string sln = "./glidex.sln";
string version = "1.0.3";
string suffix = "-pre";
string suffix = "";

Task("Clean")
.Does(() =>
Expand Down Expand Up @@ -58,7 +58,6 @@ Task("NuGet-Package-GlideX")
});

Task("NuGet-Push-GlideX")
.IsDependentOn("NuGet-Package-GlideX")
.Does(() =>
{
push("./build/glidex." + version + suffix + ".nupkg");
Expand All @@ -72,7 +71,6 @@ Task("NuGet-Package-GlideX-Forms")
});

Task("NuGet-Push-GlideX-Forms")
.IsDependentOn("NuGet-Package-GlideX-Forms")
.Does(() =>
{
push("./build/glidex.forms." + version + suffix + ".nupkg");
Expand Down
2 changes: 1 addition & 1 deletion glidex.forms.sample/glidex.forms.sample.csproj
Expand Up @@ -50,7 +50,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="3.3.0.893527-pre3" />
<PackageReference Include="Xamarin.Forms" Version="3.3.0.912540" />
<PackageReference Include="Xamarin.Android.Support.Design" Version="27.0.2" />
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="27.0.2" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="27.0.2" />
Expand Down
2 changes: 1 addition & 1 deletion glidex.forms/glidex.forms.csproj
Expand Up @@ -44,7 +44,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="3.3.0.893527-pre3" />
<PackageReference Include="Xamarin.Forms" Version="3.3.0.912540" />
<PackageReference Include="Xamarin.Android.Support.Design" Version="27.0.2" />
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="27.0.2" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="27.0.2" />
Expand Down
2 changes: 1 addition & 1 deletion glidex.forms/glidex.forms.nuspec
Expand Up @@ -17,7 +17,7 @@
<tags>Xamarin, Xamarin.Forms, Android, Glide, Bitmap, Images</tags>
<dependencies>
<dependency id="glidex" version="$version$" />
<dependency id="Xamarin.Forms" version="3.3.0.893527-pre3" />
<dependency id="Xamarin.Forms" version="3.3.0.912540" />
</dependencies>
</metadata>
</package>

0 comments on commit d8425a2

Please sign in to comment.