Skip to content

Commit

Permalink
Updated nuspec release info and appveyor version
Browse files Browse the repository at this point in the history
  • Loading branch information
justinstenning committed Jul 25, 2016
1 parent 7a86c1b commit c2143ee
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
1 change: 0 additions & 1 deletion SharedMemory/FastStructure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ public static class FastStructure<T>
/// Performs once of type compatibility check.
/// </summary>
/// <exception cref="ArgumentException">Thrown if the type T is incompatible</exception>
///
static FastStructure()
{
// Performs compatibility checks upon T
Expand Down
14 changes: 12 additions & 2 deletions SharedMemory/SharedMemory.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<title>SharedMemory</title>
<authors>Justin Stenning</authors>
<owners>Justin Stenning</owners>
<licenseUrl>https://sharedmemory.codeplex.com/license</licenseUrl>
<projectUrl>https://sharedmemory.codeplex.com/</projectUrl>
<licenseUrl>https://github.com/spazzarama/SharedMemory/blob/master/LICENSE.md</licenseUrl>
<projectUrl>https://github.com/spazzarama/SharedMemory</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The SharedMemory class library provides a set of C# classes that utilise a memory-mapped file for fast low-level inter-process communication (IPC) - specifically for sharing data between processes.

Expand All @@ -21,6 +21,16 @@ It features:
Usage: http://sharedmemory.codeplex.com/documentation</description>
<summary>Shared memory classes for sharing data between processes (Array, Buffer and Circular Buffer)</summary>
<releaseNotes>$version$
1. Breaking change: Array, Buffer, and Header classes renamed to SharedArray, SharedBuffer, and SharedHeader
2. Important breaking change! CircularBuffer Read/Write operations now allow an index to be specified. Check existing code as it may be passing a timeout value into index!
3. Circular buffer keeps track of amount written to a node and uses this during read operations
4. SharedArray implements IList
5. ArraySlice implementation added
6. FastStructure now performs type compatibility check within static constructor
7. A couple of bug fixes
8. A number of unit test fixes, minor corrections to comments and changes to make parameter names consistent

1.1.4
1. Implemented basic memory-mapped file support for .NET 3.5
2. Added generic FastStructure class for fast reading/writing of structures (using emitted IL with DynamicMethod)
3. Fixed offset bug in CircularBuffer.Read/Write(IntPtr, int, int)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#---------------------------------#

# version format
version: 1.1.{build}
version: 2.0.{build}

# branches to build
branches:
Expand Down

0 comments on commit c2143ee

Please sign in to comment.