Skip to content

Commit 3cb9cff

Browse files
committed
Merge branch '3.3.3.x' into 3.3.x
2 parents 3f3a095 + 54fe758 commit 3cb9cff

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

build-common/common.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
effectively SP0).
6767
-->
6868

69-
<property name="project.version" value="3.3.3.GA" overwrite="false" />
69+
<property name="project.version" value="3.3.3.SP1" overwrite="false" />
7070

7171
<!-- This version number should be changed if, but only if, there are incompatible
7272
changes compared to the previous version. -->
@@ -105,7 +105,11 @@
105105
106106
string qualifier = matches.Groups["qualifier"].Value;
107107
108+
// For official releases we must use a completely numeric version.
109+
// For pre-releases, the alphanumerics should be retained, to make Nuget
110+
// understand it's a pre-release.
108111
if (qualifier == "GA") return ToNumericVersion(version);
112+
if (qualifier == "SP") return ToNumericVersion(version);
109113
110114
return String.Concat(
111115
String.Join(".", new string[] { matches.Groups["major"].Value, matches.Groups["minor"].Value, matches.Groups["build"].Value }),

releasenotes.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Build 3.3.3.SP1
2+
=============================
3+
4+
Fixes for regressions introduced in the 3.3.3 cycle.
5+
6+
** Bug
7+
* [NH-3429] - Exception when debug logging is enabled when using a linq expression that requires a proxy class.
8+
* [NH-3436] - Linq-Query with IList<X>.Contains fails with NotSupportedException(The constant for 'System.Collections.Generic.List`1[System.Guid]' is not supported) at HqlTreeBuilder.Constant
9+
110
Build 3.3.3.GA
211
=============================
312

0 commit comments

Comments
 (0)