Browse Source

Bumping nuget version

Sebastien Ros 10 years ago
parent
commit
f974c30a85
4 changed files with 11 additions and 4 deletions
  1. 1 0
      .gitignore
  2. 7 2
      Jint/Jint.nuspec
  3. 2 2
      Jint/Properties/AssemblyInfo.cs
  4. 1 0
      buildnuget.cmd

+ 1 - 0
.gitignore

@@ -28,6 +28,7 @@ build/
 *_p.c
 *.ilk
 *.meta
+*.nupkg
 *.obj
 *.pch
 *.pdb

+ 7 - 2
Jint/Jint.nuspec

@@ -2,14 +2,19 @@
 <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
   <metadata>
     <id>Jint</id>
-    <version>2.4.0</version>
+    <version>2.5.0</version>
     <owners>Sebastien Ros</owners>
     <authors>Sebastien Ros</authors>
     <description>Javascript Interpreter for .NET</description>
     <language>en-US</language>
     <projectUrl>http://github.com/sebastienros/jint</projectUrl>
     <licenseUrl>https://raw.githubusercontent.com/sebastienros/jint/master/LICENSE.txt</licenseUrl>
-    <releaseNotes>Fixing important bug related to Json parsing. Added params arguments support for .NET methods.</releaseNotes>
+    <releaseNotes>
+      Automatic support of camelCase mapping for .NET members.
+      Support for nested types.
+      Support for params JsValue[].
+      Bug fixes.
+    </releaseNotes>
     <tags>javascript interpreter jint</tags>
   </metadata>
 </package>

+ 2 - 2
Jint/Properties/AssemblyInfo.cs

@@ -14,5 +14,5 @@ using System.Reflection;
 [assembly: AssemblyCulture("")]
 [assembly: NeutralResourcesLanguage("en")]
 
-[assembly: AssemblyVersion("2.4.0")]
-[assembly: AssemblyFileVersion("2.4.0")]
+[assembly: AssemblyVersion("2.5.0")]
+[assembly: AssemblyFileVersion("2.5.0")]

+ 1 - 0
buildnuget.cmd

@@ -0,0 +1 @@
+nuget pack jint\Jint.csproj -Properties Configuration=Release