Skip to content

Commit 802941c

Browse files
committed
Updated to 3.6.1.
1 parent 3da1ed1 commit 802941c

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ Cartfile.resolved
66
Binding/Mixpanel.framework
77
Binding/NewBinding_*
88
*.nupkg
9+
*.snupkg
910
Binding/Carthage

Binding/BuildNugetPackage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
./FetchFramework.sh
33
msbuild Xam.Plugin.Mixpanel.iOS.csproj -property:Configuration=Release -target:Clean,Build
4-
nuget pack Xam.Plugin.Mixpanel.iOS.csproj -Properties Configuration=Release
4+
nuget pack Xam.Plugin.Mixpanel.iOS.nuspec -Symbols -SymbolPackageFormat snupkg

Binding/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "mixpanel/mixpanel-iphone" == 3.6.0
1+
github "mixpanel/mixpanel-iphone" == 3.6.1

Binding/Properties/AssemblyInfo.cs

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

28-
[assembly: AssemblyVersion("3.6.0")]
28+
[assembly: AssemblyVersion("3.6.1")]
2929

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

Binding/Xam.Plugin.Mixpanel.iOS.nuspec

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Xam.Plugin.Mixpanel.iOS</id>
5-
<version>3.6.0</version>
5+
<version>3.6.1</version>
66
<description>Xamarin.iOS bindings for Mixpanel (Objective-C).</description>
77
<tags>mixpanel, xamarin, xamarin.ios, ios</tags>
88
<authors>beeradmoore</authors>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<license type="file">LICENSE</license>
1111
<projectUrl>https://github.com/beeradmoore/Xam.Plugin.Mixpanel.iOS</projectUrl>
12+
<dependencies>
13+
<group targetFramework="Xamarin.iOS10" />
14+
</dependencies>
1215
</metadata>
1316
<files>
1417
<file src="..\LICENSE" />
18+
<file src="bin/Release/Xam.Plugin.Mixpanel.iOS.dll" target="lib\Xamarin.iOS10\Xam.Plugin.Mixpanel.iOS.dll" />
19+
<file src="bin/Release/Xam.Plugin.Mixpanel.iOS.pdb" target="lib\Xamarin.iOS10\Xam.Plugin.Mixpanel.iOS.pdb" />
1520
</files>
1621
</package>

0 commit comments

Comments
 (0)