Skip to content

Commit fec9738

Browse files
Merge branch 'stable'
2 parents d4cbfa7 + c72116b commit fec9738

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

dist-lib.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@
4141
##---------------------------------------------------------------------------
4242

4343
function assembly-version {
44-
local RELEASE_PATTERN="^[0-9]+(\.[0-9]+){2}$"
45-
local NIGHTLY_PATTERN="^[0-9]+(\.[0-9]+){3}$"
44+
local RELEASE_PATTERN="^[0-9]+(\.[0-9a-z]+){2,3}$"
45+
local NIGHTLY_PATTERN="^[0-9]+(\.[0-9]+){2,3}$"
4646
if [[ $1 =~ $RELEASE_PATTERN ]] ; then
47-
ASSEMBLY_VSN=$RABBIT_VSN.0
47+
# AssemblyVersion cannot contain arbitrary strings
48+
ASSEMBLY_VSN=$(echo $RABBIT_VSN | sed -e "s/milestone/80/g" -e "s/rc/90/g")
4849
elif [[ $1 =~ $NIGHTLY_PATTERN ]] ; then
4950
ASSEMBLY_VSN=$RABBIT_VSN
5051
else

projects/client/RabbitMQ.Client/src/tokenized/AssemblyInfo.cs.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@
3535
// The Original Code is RabbitMQ.
3636
//
3737
// The Initial Developer of the Original Code is GoPivotal, Inc.
38-
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
38+
// Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
3939
//---------------------------------------------------------------------------
4040

4141
using System.Reflection;
4242
using System.Runtime.CompilerServices;
4343
using System.Runtime.InteropServices;
4444

45-
[assembly: AssemblyTitle("RabbitMQ Client Library for .Net")]
46-
[assembly: AssemblyDescription("Open Source Enterprise Messaging")]
45+
[assembly: AssemblyTitle("RabbitMQ Client Library for .NET")]
46+
[assembly: AssemblyDescription("See http://rabbitmq.com")]
4747
[assembly: AssemblyConfiguration("")]
48-
[assembly: AssemblyCompany("GoPivotal, Inc.")]
48+
[assembly: AssemblyCompany("Pivotal Software, Inc.")]
4949
[assembly: AssemblyProduct("RabbitMQ")]
50-
[assembly: AssemblyCopyright("Copyright © 2007-2014 GoPivotal, Inc.")]
50+
[assembly: AssemblyCopyright("Copyright © 2007-2015 Pivotal Software, Inc.")]
5151
[assembly: AssemblyTrademark("")]
5252
[assembly: AssemblyCulture("")]
5353

0 commit comments

Comments
 (0)