Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Bump version to 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
devboy committed Mar 2, 2015
1 parent 1b0ec87 commit 83d1fb2
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 7 deletions.
23 changes: 23 additions & 0 deletions Paket.Unity3D.Example.Source.0.0.13.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Paket.Unity3D.Example.Source</id>
<version>0.0.13</version>
<authors>devboy</authors>
<owners>devboy</owners>
<licenseUrl>http://github.com/fsprojects/Paket.Unity3D/blob/master/LICENSE</licenseUrl>
<projectUrl>http://fsprojects.github.com/Paket.Unity3D</projectUrl>
<!--<iconUrl>https://raw.githubusercontent.com/fsprojects/ProjectScaffold/master/docs/files/img/logo.png</iconUrl>-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>Example project demonstrating Paket.Unity3D</summary>
<description>Example project demonstrating Paket.Unity3D</description>
<releaseNotes>Add command installs automatically when single project is found and displays a warning when multiple projects are found but interactive command is not given</releaseNotes>
<copyright>Copyright 2013</copyright>
<tags>nuget, bundler, F#</tags>
<dependencies />
</metadata>
<files>
<file src="src/Paket.Unity3D.Example/Sources/**/*.cs" target="content" />
<file src="src/Paket.Unity3D.Example/Plugins/**/*.h" target="content/Plugins" />
</files>
</package>
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### 0.0.13 - February 26 2015
#### 0.0.14 - February 26 2015
* Add command installs automatically when single project is found and displays a warning when multiple projects are found but interactive command is not given

#### 0.0.12 - February 26 2015
Expand Down
6 changes: 3 additions & 3 deletions src/Paket.Unity3D.Bootstrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
[assembly: AssemblyTitleAttribute("Paket.Unity3D.Bootstrapper")]
[assembly: AssemblyProductAttribute("Paket.Unity3D")]
[assembly: AssemblyDescriptionAttribute("Piggy-backs ontop of Paket to add dependencies to Unity3D projects")]
[assembly: AssemblyVersionAttribute("0.0.12")]
[assembly: AssemblyFileVersionAttribute("0.0.12")]
[assembly: AssemblyVersionAttribute("0.0.14")]
[assembly: AssemblyFileVersionAttribute("0.0.14")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "0.0.12";
internal const string Version = "0.0.14";
}
}
6 changes: 3 additions & 3 deletions src/Paket.Unity3D/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Paket.Unity3D")>]
[<assembly: AssemblyProductAttribute("Paket.Unity3D")>]
[<assembly: AssemblyDescriptionAttribute("Piggy-backs ontop of Paket to add dependencies to Unity3D projects")>]
[<assembly: AssemblyVersionAttribute("0.0.12")>]
[<assembly: AssemblyFileVersionAttribute("0.0.12")>]
[<assembly: AssemblyVersionAttribute("0.0.14")>]
[<assembly: AssemblyFileVersionAttribute("0.0.14")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "0.0.12"
let [<Literal>] Version = "0.0.14"

0 comments on commit 83d1fb2

Please sign in to comment.