Skip to content

Commit 1b410b2

Browse files
Release 5.0.1
1 parent b29ec23 commit 1b410b2

File tree

4 files changed

+74
-4
lines changed

4 files changed

+74
-4
lines changed

GitReleaseManager.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
create:
2+
include-footer: false
3+
issue-labels-include:
4+
- "t: Bug"
5+
- "t: New Feature"
6+
- "t: Improvement"
7+
- "t: Task"
8+
issue-labels-exclude:
9+
- "r: Rejected"
10+
- "r: Replaced"
11+
issue-labels-alias:
12+
- name: "t: Bug"
13+
header: Bug
14+
plural: Bug
15+
- name: "t: New Feature"
16+
header: New Feature
17+
plural: New Feature
18+
- name: "t: Improvement"
19+
header: Improvement
20+
plural: Improvement
21+
- name: "t: Task"
22+
header: Task
23+
plural: Task

build-common/NHibernate.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor>
44
<VersionMinor Condition="'$(VersionMinor)' == ''">0</VersionMinor>
5-
<VersionPatch Condition="'$(VersionPatch)' == ''">0</VersionPatch>
5+
<VersionPatch Condition="'$(VersionPatch)' == ''">1</VersionPatch>
66
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
77

88
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>

build-common/common.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030

3131
<!-- This is used only for build folder -->
3232
<!-- TODO: Either remove or refactor to use NHibernate.props -->
33-
<property name="project.version" value="5.0.0" overwrite="false" />
34-
<property name="project.version.numeric" value="5.0.0" overwrite="false" />
33+
<property name="project.version" value="5.0.1" overwrite="false" />
34+
<property name="project.version.numeric" value="5.0.1" overwrite="false" />
3535

3636
<!-- properties used to connect to database for testing -->
3737
<include buildfile="nhibernate-properties.xml" />

releasenotes.txt

+48-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,51 @@
1-
Build 5.0.0
1+
Build 5.0.1
2+
=============================
3+
4+
Release notes - NHibernate - Version 5.0.1
5+
6+
** Bug
7+
* #1428 Insert underscore in combined parameter name
8+
* #1424 Bad wording and example fixes in cache documentation.
9+
* #1420 Fix #1419 - ISession.IsDirty() shouldn't throw exception for transient many-to-one object in a session
10+
* #1419 ISession.IsDirty() shouldn't throw exception for transient many-to-one object in a session
11+
* #1418 Column.GetAlias should account for other suffixes
12+
* #1415 Correct MaxAliasLength for various dialects
13+
* #1393 Fix Linq Future aggregates failures, fixes #1387
14+
* #1389 Add support for out/ref Nullable parameters of proxied methods
15+
* #1387 Linq Sum() with ToFutureValue fails
16+
* #1384 Fix a column spec causing missing col in pdf, fix a text overflow
17+
* #1380 #750 - AliasToBean failure, test case and fix
18+
* #1378 Fix #1362 - Running Unit tests against SQLite fails on datetime/UTC
19+
* #1362 NH-4093 - Running Unit tests against SQLite fails on numerous (22) datetime/UTC related tests.
20+
* #1357 NH-3983 - ToFuture throws ArgumentException at CreateCombinedQueryParameters
21+
* #1179 NH-3840 - Wrong documentation of "cascade" in 5.1.11 (many-to-one)
22+
* #1165 NH-3554 - Docs - bidirectional, indexed collections
23+
* #983 Fix forgotten CDATA closure.
24+
* #879 NH-4006 - Provide a correct MaxAliasLength for various dialects
25+
* #750 Transformers.AliasToBean: Value cannot be null. Parameter name: key
26+
* #712 NH-4092 - AsyncGenerator creates unused private static event handler in SQLite20Driver
27+
28+
** Improvement
29+
* #1410 Remove unused code in build scripts
30+
* #1404 Use MsBuild for packing .nupkg files
31+
* #1401 Clean up db tests dependencies
32+
* #1395 Documentation fixes
33+
* #1386 Lack of custom logging documentation
34+
* #1382 Jira to GitHub: change issue naming in tests
35+
* #1379 Documentation fixes
36+
* #982 Back port doc fixes
37+
* #824 NH-3208 - Document all possible settings in hibernate.cfg
38+
* #823 NH-3179 - Documentation should note that OnDelete should set IsSaved to false in chapter 24.1
39+
* #788 NH-1947 - Undocumented attributes on sql-query element
40+
* #713 Switch to GitHub issues
41+
* #711 Switch doc generation to UTF-8.
42+
43+
** Task
44+
* #1431 Release 5.0.1
45+
* #1405 Remove unused and broken NHibernate.Setup WiX project
46+
47+
48+
Build 5.0.0
249
=============================
350

451
** Highlights

0 commit comments

Comments
 (0)