Skip to content

Commit

Permalink
Published v0.8.0 to NuGet; closes Issue #11
Browse files Browse the repository at this point in the history
  • Loading branch information
nCubed committed Nov 27, 2016
1 parent 8d429bf commit 1ef5ca8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions DM.MovieApi/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle( "DM.MovieApi" )]
[assembly: AssemblyDescription( "" )]
[assembly: AssemblyDescription( "C# wrapper for common requests against themoviedb.org API." )]
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "nCubed" )]
[assembly: AssemblyProduct( "TheMovieDb.org Wrapper" )]
Expand All @@ -31,7 +31,7 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion( "0.7.2.0" )]
[assembly: AssemblyFileVersion( "0.7.2.0" )]
[assembly: AssemblyVersion( "0.8.0.0" )]
[assembly: AssemblyFileVersion( "0.8.0.0" )]

[assembly: InternalsVisibleTo( "DM.MovieApi.IntegrationTests" )]
11 changes: 5 additions & 6 deletions TheMovieDbWrapper.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,24 @@
<package >
<metadata>
<id>TheMovieDbWrapper</id>
<version>0.7.2</version>
<version>0.8.0</version>
<title>TheMovieDb.org Wrapper</title>
<authors>Kindler Chase</authors>
<owners>Kindler Chase</owners>
<licenseUrl>https://github.com/nCubed/TheMovieDbWrapper/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/nCubed/TheMovieDbWrapper</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>C# wrapper for common requests against themoviedb.org API.</description>
<releaseNotes>Extended NewtonSoft.IsoDateTimeConverter to allow partial dates; fallback to default(DateTime) when date is malformed and supress the exception. During debug, the date value being parsed will be emitted to the Trace log.
.</releaseNotes>
<releaseNotes>Migrated project to .netstandard to support Cross-Platform Applications, i.e., Android, IOS, and all flavors of .NET. Minor breaking change, re: IMovieDbApi is currently not supported, but will support in the future.</releaseNotes>
<copyright>Copyright 2016</copyright>
<tags>Movie Movies themoviedb themoviedb.org TMDB Film TV Television</tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="9.0.1" />
</dependencies>
</metadata>
<files>
<file src="DM.MovieApi\bin\Release\DM.MovieApi.dll" target="lib\net45" />
<file src="DM.MovieApi\bin\Release\DM.MovieApi.pdb" target="lib\net45" />
<file src="DM.MovieApi\bin\Release\DM.MovieApi.xml" target="lib\net45" />
<file src="DM.MovieApi\bin\Release\DM.MovieApi.dll" target="lib\netstandard1.1\DM.MovieApi.dll" />
<file src="DM.MovieApi\bin\Release\DM.MovieApi.pdb" target="lib\netstandard1.1\DM.MovieApi.pdb" />
<file src="DM.MovieApi\bin\Release\DM.MovieApi.xml" target="lib\netstandard1.1\DM.MovieApi.xml" />
</files>
</package>

0 comments on commit 1ef5ca8

Please sign in to comment.