Skip to content

Commit bb025a3

Browse files
committed
Update version to 2.1.1
1 parent 130ee8f commit bb025a3

File tree

11 files changed

+26
-23
lines changed

11 files changed

+26
-23
lines changed

.build/Plugin.Badge.nuspec

Lines changed: 5 additions & 2 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.1.0</version>
4+
<version>2.1.1</version>
55
<title>Tab Badge for Xamarin.Forms</title>
66
<authors>Adrian Seceleanu</authors>
77
<owners>Adrian Seceleanu</owners>
@@ -14,6 +14,9 @@
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.1]
18+
- #62 Merged fix from PR #63
19+
- #61 UWP Nuget pacakge - Explicitly include .xr.xml and .xbf files
1720
[2.1.0]
1821
- #45 WPF Renderer and sample app
1922
- #58 Tabs as navigation pages
@@ -22,7 +25,7 @@
2225
[2.1.0-pre.2]
2326
- #49 Fix missing UWP dlls from nuget package
2427
[2.1.0-pre.1]
25-
- Update to Xamarin Forms 3.1
28+
- Update to Xamarin Forms 3.1
2629
- #48 Android Bottom Placement Support
2730
- #46 Bugfix: consider tabpage children embedded in navigation pages
2831
[2.0.0]

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.1.0")]
20+
[assembly: AssemblyVersion("2.1.1")]
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.1.0")]
20+
[assembly: AssemblyVersion("2.1.1")]
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.1.0")]
31-
[assembly: AssemblyVersion("2.1.0")]
32-
[assembly: AssemblyFileVersion("2.1.0")]
30+
// [assembly: AssemblyVersion("2.1.1")]
31+
[assembly: AssemblyVersion("2.1.1")]
32+
[assembly: AssemblyFileVersion("2.1.1")]
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.1.0")]
27-
[assembly: AssemblyVersion("2.1.0")]
28-
[assembly: AssemblyFileVersion("2.1.0")]
26+
// [assembly: AssemblyVersion("2.1.1")]
27+
[assembly: AssemblyVersion("2.1.1")]
28+
[assembly: AssemblyFileVersion("2.1.1")]
2929
[assembly: ComVisible(false)]

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
//
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
53-
// [assembly: AssemblyVersion("2.1.0")]
54-
[assembly: AssemblyVersion("2.1.0")]
55-
[assembly: AssemblyFileVersion("2.1.0")]
53+
// [assembly: AssemblyVersion("2.1.1")]
54+
[assembly: AssemblyVersion("2.1.1")]
55+
[assembly: AssemblyFileVersion("2.1.1")]

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.1.0")]
20+
[assembly: AssemblyVersion("2.1.1")]
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.1.0")]
21+
[assembly: AssemblyVersion("2.1.1")]
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.1.0")]
30-
[assembly: AssemblyVersion("2.1.0")]
31-
[assembly: AssemblyFileVersion("2.1.0")]
29+
// [assembly: AssemblyVersion("2.1.1")]
30+
[assembly: AssemblyVersion("2.1.1")]
31+
[assembly: AssemblyFileVersion("2.1.1")]
3232
[assembly: ComVisible(false)]
3333

3434

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
//
5454
// You can specify all the values or you can default the Build and Revision Numbers
5555
// by using the '*' as shown below:
56-
// [assembly: AssemblyVersion("2.1.0")]
57-
[assembly: AssemblyVersion("2.1.0")]
58-
[assembly: AssemblyFileVersion("2.1.0")]
56+
// [assembly: AssemblyVersion("2.1.1")]
57+
[assembly: AssemblyVersion("2.1.1")]
58+
[assembly: AssemblyFileVersion("2.1.1")]
5959

6060
//register renderer
6161
[assembly: ExportRenderer(typeof(TabbedPage), typeof(BadgedTabbedPageRenderer))]

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.1.0")]
35-
[assembly: AssemblyFileVersion("2.1.0")]
34+
[assembly: AssemblyVersion("2.1.1")]
35+
[assembly: AssemblyFileVersion("2.1.1")]
3636

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

0 commit comments

Comments
 (0)