Skip to content

Commit

Permalink
Bump version to 3.24.0-alpha001
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Oct 22, 2016
1 parent 3825b72 commit cdc16b5
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 21 deletions.
1 change: 1 addition & 0 deletions docs/content/paket-push.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ OPTIONS:
--log-file <path> Specify a log file for the paket process.
--silent, -s Suppress console output for the paket process.
--version Display the version.
--from-bootstrapper Call comming from the '--run' feature of the bootstrapper.
--help display this list of options.
If you add the `-v` flag, then Paket will run in verbose mode and show detailed information.

Expand Down
10 changes: 5 additions & 5 deletions src/Paket.Bootstrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
[assembly: AssemblyTitleAttribute("Paket.Bootstrapper")]
[assembly: AssemblyProductAttribute("Paket")]
[assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")]
[assembly: AssemblyVersionAttribute("3.23.2")]
[assembly: AssemblyFileVersionAttribute("3.23.2")]
[assembly: AssemblyInformationalVersionAttribute("3.23.2")]
[assembly: AssemblyVersionAttribute("3.24.0")]
[assembly: AssemblyFileVersionAttribute("3.24.0")]
[assembly: AssemblyInformationalVersionAttribute("3.24.0-alpha001")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "3.23.2";
internal const string InformationalVersion = "3.23.2";
internal const string Version = "3.24.0";
internal const string InformationalVersion = "3.24.0-alpha001";
}
}
10 changes: 5 additions & 5 deletions src/Paket.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("3.23.2")>]
[<assembly: AssemblyFileVersionAttribute("3.23.2")>]
[<assembly: AssemblyInformationalVersionAttribute("3.23.2")>]
[<assembly: AssemblyVersionAttribute("3.24.0")>]
[<assembly: AssemblyFileVersionAttribute("3.24.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.24.0-alpha001")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "3.23.2"
let [<Literal>] InformationalVersion = "3.23.2"
let [<Literal>] Version = "3.24.0"
let [<Literal>] InformationalVersion = "3.24.0-alpha001"
2 changes: 1 addition & 1 deletion src/Paket.Core/Paket.Core/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.23.2",
"version": "3.24.0-alpha001",
"buildOptions": {
"debugType": "portable",
"compilerName": "fsc",
Expand Down
10 changes: 5 additions & 5 deletions src/Paket.PowerShell/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("3.23.2")>]
[<assembly: AssemblyFileVersionAttribute("3.23.2")>]
[<assembly: AssemblyInformationalVersionAttribute("3.23.2")>]
[<assembly: AssemblyVersionAttribute("3.24.0")>]
[<assembly: AssemblyFileVersionAttribute("3.24.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.24.0-alpha001")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "3.23.2"
let [<Literal>] InformationalVersion = "3.23.2"
let [<Literal>] Version = "3.24.0"
let [<Literal>] InformationalVersion = "3.24.0-alpha001"
10 changes: 5 additions & 5 deletions src/Paket/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("3.23.2")>]
[<assembly: AssemblyFileVersionAttribute("3.23.2")>]
[<assembly: AssemblyInformationalVersionAttribute("3.23.2")>]
[<assembly: AssemblyVersionAttribute("3.24.0")>]
[<assembly: AssemblyFileVersionAttribute("3.24.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.24.0-alpha001")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "3.23.2"
let [<Literal>] InformationalVersion = "3.23.2"
let [<Literal>] Version = "3.24.0"
let [<Literal>] InformationalVersion = "3.24.0-alpha001"

0 comments on commit cdc16b5

Please sign in to comment.