Browse Source

Bumping version number

Sebastien Ros 11 years ago
parent
commit
ac7a203f89
3 changed files with 6 additions and 5 deletions
  1. 1 0
      Jint/Jint.csproj
  2. 3 3
      Jint/Jint.nuspec
  3. 2 2
      Jint/Properties/AssemblyInfo.cs

+ 1 - 0
Jint/Jint.csproj

@@ -197,6 +197,7 @@
     <Compile Include="StrictModeScope.cs" />
   </ItemGroup>
   <ItemGroup>
+    <None Include="Jint.nuspec" />
     <None Include="Jint.snk" />
   </ItemGroup>
   <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />

+ 3 - 3
Jint/Jint.nuspec

@@ -2,14 +2,14 @@
 <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
   <metadata>
     <id>Jint</id>
-    <version>2.2.0</version>
+    <version>2.3.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.github.com/sebastienros/jint/master/LICENSE.txt</licenseUrl>
-    <releaseNotes>Added more bindings: enums, static members, indexes, typed delegates</releaseNotes>
+    <licenseUrl>https://raw.githubusercontent.com/sebastienros/jint/master/LICENSE.txt</licenseUrl>
+    <releaseNotes>Improved .NET bindings and performance. Implemented recursion limit.</releaseNotes>
     <tags>javascript interpreter</tags>
   </metadata>
 </package>

+ 2 - 2
Jint/Properties/AssemblyInfo.cs

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