Skip to content

Commit ffb6ac0

Browse files
committed
Updated version to 2.1.0-pre.1
1 parent d79ad9d commit ffb6ac0

File tree

9 files changed

+26
-22
lines changed

9 files changed

+26
-22
lines changed

.build/Plugin.Badge.nuspec

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
22
<metadata>
33
<id>Plugin.Badge</id>
4-
<version>2.0.0</version>
4+
<version>2.1.0-pre.1</version>
55
<title>Tab Badge for Xamarin.Forms</title>
66
<authors>Adrian Seceleanu</authors>
77
<owners>Adrian Seceleanu</owners>
@@ -14,6 +14,10 @@
1414
<tags>xamarin xamarin.forms badge tab tabbar monodroid Xamarin.iOS uwp uap android ios windows universal mac macos osx</tags>
1515
<iconUrl>https://raw.githubusercontent.com/xabre/xamarin-forms-tab-badge/master/icon_small.png</iconUrl>
1616
<releaseNotes>
17+
[2.1.0-pre.1]
18+
- Update to Xamarin Forms 3.1
19+
- #48 Android Bottom Placement Support
20+
- #46 Bugfix: consider tabpage children embedded in navigation pages
1721
[2.0.0]
1822
- NET Standard support
1923
- #40 Added support for NON-AppCompat android activity (actionbar)
@@ -23,22 +27,22 @@
2327
</releaseNotes>
2428
<dependencies>
2529
<group targetFramework="netstandard1.4">
26-
<dependency id="Xamarin.Forms" version="2.5.0.280555" />
30+
<dependency id="Xamarin.Forms" version="3.1.0.583944" />
2731
</group>
2832
<group targetFramework="portable-net45+win+wpa81+wp80">
29-
<dependency id="Xamarin.Forms" version="2.5.0.280555" />
33+
<dependency id="Xamarin.Forms" version="3.1.0.583944" />
3034
</group>
3135
<group targetFramework="MonoAndroid10">
32-
<dependency id="Xamarin.Forms" version="2.5.0.280555" />
36+
<dependency id="Xamarin.Forms" version="3.1.0.583944" />
3337
</group>
3438
<group targetFramework="Xamarin.iOS10">
35-
<dependency id="Xamarin.Forms" version="2.5.0.280555" />
39+
<dependency id="Xamarin.Forms" version="3.1.0.583944" />
3640
</group>
3741
<group targetFramework="uap10.0">
38-
<dependency id="Xamarin.Forms" version="2.5.0.280555" />
42+
<dependency id="Xamarin.Forms" version="3.1.0.583944" />
3943
</group>
4044
<group targetFramework="xamarinmac20">
41-
<dependency id="Xamarin.Forms" version="2.5.0.280555" />
45+
<dependency id="Xamarin.Forms" version="3.1.0.583944" />
4246
</group>
4347
</dependencies>
4448
</metadata>

Source/Plugin.Badge.Droid/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion("2.0.0")]
20+
[assembly: AssemblyVersion("2.1.0")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

Source/Plugin.Badge.Mac/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion("2.0.0")]
20+
[assembly: AssemblyVersion("2.1.0")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

Source/Plugin.Badge.Sample.Droid.Legacy/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
//
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
30-
// [assembly: AssemblyVersion("2.0.0")]
31-
[assembly: AssemblyVersion("2.0.0")]
32-
[assembly: AssemblyFileVersion("2.0.0")]
30+
// [assembly: AssemblyVersion("2.1.0")]
31+
[assembly: AssemblyVersion("2.1.0")]
32+
[assembly: AssemblyFileVersion("2.1.0")]
3333

3434
//register renderer
3535
[assembly: ExportRenderer(typeof(TabbedPage), typeof(LegacyBadgedTabbedRenderer))]

Source/Plugin.Badge.UWP/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
//
2424
// You can specify all the values or you can default the Build and Revision Numbers
2525
// by using the '*' as shown below:
26-
// [assembly: AssemblyVersion("2.0.0")]
27-
[assembly: AssemblyVersion("2.0.0")]
28-
[assembly: AssemblyFileVersion("2.0.0")]
26+
// [assembly: AssemblyVersion("2.1.0")]
27+
[assembly: AssemblyVersion("2.1.0")]
28+
[assembly: AssemblyFileVersion("2.1.0")]
2929
[assembly: ComVisible(false)]

Source/Plugin.Badge.iOS/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion("2.0.0")]
20+
[assembly: AssemblyVersion("2.1.0")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

Source/Sample/Plugin.Badge.Sample.Droid/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1919
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
2020

21-
[assembly: AssemblyVersion("2.0.0")]
21+
[assembly: AssemblyVersion("2.1.0")]
2222

2323
// The following attributes are used to specify the signing key for the assembly,
2424
// if desired. See the Mono documentation for more information about signing.

Source/Sample/Plugin.Badge.Sample.UWP/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
//
2727
// You can specify all the values or you can default the Build and Revision Numbers
2828
// by using the '*' as shown below:
29-
// [assembly: AssemblyVersion("2.0.0")]
30-
[assembly: AssemblyVersion("2.0.0")]
31-
[assembly: AssemblyFileVersion("2.0.0")]
29+
// [assembly: AssemblyVersion("2.1.0")]
30+
[assembly: AssemblyVersion("2.1.0")]
31+
[assembly: AssemblyFileVersion("2.1.0")]
3232
[assembly: ComVisible(false)]
3333

3434

Source/Sample/Plugin.Badge.Sample.iOS/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
// Build Number
3232
// Revision
3333
//
34-
[assembly: AssemblyVersion("2.0.0")]
35-
[assembly: AssemblyFileVersion("2.0.0")]
34+
[assembly: AssemblyVersion("2.1.0")]
35+
[assembly: AssemblyFileVersion("2.1.0")]
3636

3737
//register renderer
3838
[assembly: ExportRenderer(typeof(TabbedPage), typeof(BadgedTabbedPageRenderer))]

0 commit comments

Comments
 (0)