Skip to content

Commit

Permalink
Remove alpha tag from version
Browse files Browse the repository at this point in the history
  • Loading branch information
samcook committed Mar 31, 2015
1 parent 13a414c commit 382bf98
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Makes use of the excellent [StackExchange.Redis](https://github.com/StackExchang

Distributed locks are useful for ensuring only one process is using a particular resource at any given time (even if the processes are running on different machines).

RedLock.net is available using NuGet - search for [RedLock.net](https://www.nuget.org/packages/RedLock.net) (you'll need to enable pre-release packages at this point).
RedLock.net is available using NuGet - search for [RedLock.net](https://www.nuget.org/packages/RedLock.net).

## Usage

Expand Down
3 changes: 2 additions & 1 deletion RedLock.net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RedLock", "RedLock\RedLock.
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1DF05864-1C9B-442D-A425-0A14C0D5765B}"
ProjectSection(SolutionItems) = preProject
LICENSE.txt = LICENSE.txt
LICENSE = LICENSE
README.md = README.md
redlock-icon.png = redlock-icon.png
EndProjectSection
EndProject
Expand Down
2 changes: 1 addition & 1 deletion RedLock/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-alpha")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

[assembly: InternalsVisibleTo("RedLock.Tests")]
4 changes: 2 additions & 2 deletions RedLock/RedLock.nuspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<package >
<package>
<metadata>
<id>RedLock.net</id>
<version>$version$</version>
Expand All @@ -8,7 +8,7 @@
<owners>Sam Cook</owners>
<licenseUrl>https://github.com/samcook/RedLock.net/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/samcook/RedLock.net</projectUrl>
<!-- <iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl> -->
<iconUrl>https://raw.githubusercontent.com/samcook/RedLock.net/master/redlock-icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An implementation of the Redlock distributed lock algorithm</description>
<releaseNotes>1.0.0 - Initial release</releaseNotes>
Expand Down

0 comments on commit 382bf98

Please sign in to comment.