Skip to content

Commit

Permalink
removed -BETA tag from nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed Apr 9, 2015
1 parent 12bd2cb commit d2ed973
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
9 changes: 9 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,15 @@ var router2 =
**`ConsistentHashable` renamed to `IConsistentHashable`**
Any objects you may have decorated with the `ConsistentHashable` interface to work with `ConsistentHashRouter` instances will need to implement `IConsistentHashable` going forward, as all interfaces have been renamed with the `I-` prefix per .NET naming conventions.

**Akka.DI.Unity NuGet Package**
Akka.NET now ships with dependency injection support for [Unity](http://unity.codeplex.com/).

You can install our Unity package via the following command in the NuGet package manager console:

```
PM> Install-Package Akka.DI.Unity
```

----

#### 0.8.0 Feb 11 2015
Expand Down
2 changes: 0 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ let company = "Akka.NET Team"
let description = "Akka.NET is a port of the popular Java/Scala framework Akka to .NET"
let tags = ["akka";"actors";"actor";"model";"Akka";"concurrency"]
let configuration = "Release"
let nugetTitleSuffix = " - BETA"
let toolDir = "tools"
let CloudCopyDir = toolDir @@ "CloudCopy"
let AzCopyDir = toolDir @@ "AzCopy"
Expand Down Expand Up @@ -307,7 +306,6 @@ let createNugetPackages _ =
ReleaseNotes = release.Notes |> String.concat "\n"
Version = releaseVersion
Tags = tags |> String.concat " "
Title = nugetTitleSuffix
OutputPath = outputDir
WorkingDir = workingDir
SymbolPackage = symbolPackage
Expand Down
10 changes: 1 addition & 9 deletions src/core/Akka.FSharp/Properties/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
//-----------------------------------------------------------------------
// <copyright file="AssemblyInfo.fs" company="Akka.NET Project">
// Copyright (C) 2009-2015 Typesafe Inc. <http://www.typesafe.com>
// Copyright (C) 2013-2015 Akka.NET project <https://github.com/akkadotnet/akka.net>
// </copyright>
//-----------------------------------------------------------------------

namespace System
namespace System
open System
open System.Reflection
open System.Runtime.InteropServices
Expand All @@ -23,4 +16,3 @@ do ()

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

0 comments on commit d2ed973

Please sign in to comment.