File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
projects/client/RabbitMQ.Client/src/tokenized Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 41
41
# #---------------------------------------------------------------------------
42
42
43
43
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}$"
46
46
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" )
48
49
elif [[ $1 =~ $NIGHTLY_PATTERN ]] ; then
49
50
ASSEMBLY_VSN=$RABBIT_VSN
50
51
else
Original file line number Diff line number Diff line change 35
35
// The Original Code is RabbitMQ.
36
36
//
37
37
// 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.
39
39
//---------------------------------------------------------------------------
40
40
41
41
using System.Reflection;
42
42
using System.Runtime.CompilerServices;
43
43
using System.Runtime.InteropServices;
44
44
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 ")]
47
47
[assembly: AssemblyConfiguration("")]
48
- [assembly: AssemblyCompany("GoPivotal , Inc.")]
48
+ [assembly: AssemblyCompany("Pivotal Software , Inc.")]
49
49
[assembly: AssemblyProduct("RabbitMQ")]
50
- [assembly: AssemblyCopyright("Copyright © 2007-2014 GoPivotal , Inc.")]
50
+ [assembly: AssemblyCopyright("Copyright © 2007-2015 Pivotal Software , Inc.")]
51
51
[assembly: AssemblyTrademark("")]
52
52
[assembly: AssemblyCulture("")]
53
53
You can’t perform that action at this time.
0 commit comments