Skip to content

Commit 5bfecbe

Browse files
Release 5.1.1
1 parent 381f1dd commit 5bfecbe

6 files changed

+45
-9
lines changed

ReleaseProcedure.txt

+7-3
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,20 @@ Tools\gitreleasemanager.0.7.0\tools\GitReleaseManager.exe create -o nhibernate -
1414
releasing another branch than master)
1515

1616
* Update releasenotes.txt with the list of issues generated in the GitHub
17-
draft release.
17+
draft release. Add to the list the release task.
1818
See if any additions to the list of "known breaking changes" are necessary.
1919

20-
* Update the GitHub draft release for matching other release formalism: update
20+
* Update the GitHub draft release for matching other release formalism: ensure
21+
its tag matches the released version (three parts: major.minor.release), update
2122
its title, change its description for listing only highlights and breaking
2223
changes, include links to the milestone and the releasenotes of the release
2324
tag, include links to binaries on SourceForge and NuGet.
25+
If the release tag does not match the released version with major.minor.release
26+
formalism, the NuGet package will have an invalid link to release notes.
2427

2528
* Check/update version number in common.xml and NHibernate.props under
26-
build-common folder, and in master.xml under doc\reference folder.
29+
build-common folder, in master.xml under doc\reference folder, and in
30+
appveyor.yml in the NHibernate root.
2731

2832
* Don't forget to commit the above.
2933

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 5.1.0.{build}
1+
version: 5.1.1.{build}
22
image: Visual Studio 2017
33
environment:
44
matrix:

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)' == ''">1</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
@@ -13,8 +13,8 @@
1313

1414
<!-- This is used only for build folder -->
1515
<!-- TODO: Either remove or refactor to use NHibernate.props -->
16-
<property name="project.version" value="5.1.0" overwrite="false" />
17-
<property name="project.version.numeric" value="5.1.0" overwrite="false" />
16+
<property name="project.version" value="5.1.1" overwrite="false" />
17+
<property name="project.version.numeric" value="5.1.1" overwrite="false" />
1818

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

releasenotes.txt

+30-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
1-
Build 5.1.0
1+
Build 5.1.1
2+
=============================
3+
4+
Release notes - NHibernate - Version 5.1.1
5+
6+
** Bug
7+
8+
* #1645 One-to-one with property-ref triggers StackOverflow Exception
9+
* #1643 TypeLoadException in StaticProxyFactory after upgrading to 5.1.0
10+
* #1640 Handle all overloads of String.Trim*()
11+
* #1636 Fix api documentation assets path
12+
* #1628 StackOverflowException for lazy proxied entities with explicit interface properties
13+
* #1618 Fix NuGet push script
14+
* #1149 NH-3391 - StatelessSession: one-to-one detail-object is always null
15+
16+
** Improvement
17+
18+
* #1646 Add a link to release notes in NuGet package
19+
* #1639 Speedup access to SQL Server on Linux
20+
* #1624 Add missing ids on documentation sections
21+
* #1619 Document "entity join" and "entity projection"
22+
23+
** Task
24+
25+
* #1649 Release 5.1.1
26+
* #1622 Update cache documentation
27+
* #1621 Upgrade Async Generator to a version compatible with VS 15.6.3
28+
29+
30+
Build 5.1.0
231
=============================
332

433
Release notes - NHibernate - Version 5.1.0

src/NHibernate.sln

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Microsoft Visual Studio Solution File, Format Version 12.00
1+
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
33
VisualStudioVersion = 15.0.26730.12
44
MinimumVisualStudioVersion = 10.0.40219.1
@@ -9,6 +9,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
99
..\build-common\NHibernate.props = ..\build-common\NHibernate.props
1010
..\releasenotes.txt = ..\releasenotes.txt
1111
..\teamcity.build = ..\teamcity.build
12+
..\build-common\common.xml = ..\build-common\common.xml
13+
..\appveyor.yml = ..\appveyor.yml
14+
..\ReleaseProcedure.txt = ..\ReleaseProcedure.txt
1215
EndProjectSection
1316
EndProject
1417
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NHibernate", "NHibernate\NHibernate.csproj", "{5909BFE7-93CF-4E5F-BE22-6293368AF01D}"

0 commit comments

Comments
 (0)