Skip to content

Commit 23ea813

Browse files
committed
Prep v3.1.0 release
1 parent 3c6d1d6 commit 23ea813

File tree

16 files changed

+29
-21
lines changed

16 files changed

+29
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@ All notable changes to this project will be documented in this file.
55
###
66
## [3.X.X.X] - TBC
77

8-
## [3.1.0] - TBC
9-
8+
## Previous Releases
9+
###
10+
## [3.1.0] - 2022-01-01
1011
### Enhancements
1112
- [#254](https://github.com/nHapiNET/nHapi/pull/254) Add `UnexpectedSegmentBehaviour` Options, ported from hapi
1213
- [#251](https://github.com/nHapiNET/nHapi/pull/251) Fix concurrency issues with `PipeParser`, `StructureDefinition`, `GenericMessage` and `Escape`.
1314
- [#250](https://github.com/nHapiNET/nHapi/pull/250) Add new options `DefaultObx2Type` and `InvalidObx2Type` to `ParserOptions`, ported from nhapi. (fixes [#63](https://github.com/nHapiNET/nHapi/issues/63))
1415
- [#240](https://github.com/nHapiNET/nHapi/pull/240) Add support for `NonGreedyMode` by introducing `ParserOptions` ported from hapi. (fixes [#65](https://github.com/nHapiNET/nHapi/issues/65) [#232](https://github.com/nHapiNET/nHapi/issues/232))
1516

16-
## Previous Releases
17-
###
18-
17+
### Other
18+
- [#256](https://github.com/nHapiNET/nHapi/pull/256) Simplify cspoj through use of props and targets files.
19+
- Update tools and build to net6.0
1920
## [3.0.4] - 2021-08-11
2021
This change is to prevent the following Exception:
2122

build/default.ps1

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ properties {
2020
"NHapi.Model.V271",
2121
"NHapi.Model.V281"
2222
)
23+
$apiKey = "YOUR_API_KEY"
2324
}
2425

2526
Task Default -depends Build
@@ -94,5 +95,11 @@ Task Package -depends Build {
9495
}
9596

9697
Task Deploy -depends Package {
97-
Exec { .nuget\nuget push *.nupkg -Source https://api.nuget.org/v3/index.json }
98+
99+
foreach($project in $projects) {
100+
Exec { dotnet nuget push "..\dist\$project.*.nupkg" --api-key $apiKey }
101+
}
102+
103+
Exec { dotnet nuget push "..\dist\nhapi.3.1.0.nupkg" --api-key $apiKey }
104+
# Exec { .nuget\nuget push *.nupkg -Source https://api.nuget.org/v3/index.json }
98105
}

build/nHapi.v3.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
44
<id>nhapi</id>
5-
<version>3.0.4</version>
5+
<version>3.1.0</version>
66
<authors>Chad Chenoweth,Duane Edwards,Jake Aitchison</authors>
77
<license type="expression">MPL-2.0</license>
88
<projectUrl>https://github.com/nHapiNET/nHapi</projectUrl>
@@ -13,7 +13,7 @@
1313
NHapi allows Microsoft .NET developers to easily use an HL7 2.x object model. This object model allows for parsing and encoding HL7 2.x data to/from Pipe Delimited or XML formats. A very handy program for use in the health care industry.
1414

1515
This project is NOT affiliated with the HL7 organization. This software just conforms to the HL7 2.x specifications.</description>
16-
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.4</releaseNotes>
16+
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.1.0</releaseNotes>
1717
<tags>HL7 parsing healthcare HAPI xml</tags>
1818
<readme>docs\README.md</readme>
1919
<dependencies>

src/NHapi.Base/NHapi.Base.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.base</PackageId>
7-
<Version>3.0.4</Version>
7+
<Version>3.1.0</Version>
88
<PackageDescription>The core components for parsing/encoding HL7 messages. Contains the base classes and interfaces for datatypes, segments, and messages.</PackageDescription>
99
<Description>NHapi Common Library</Description>
1010
<NoWarn>1591</NoWarn>

src/NHapi.Model.V21/NHapi.Model.V21.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v21</PackageId>
7-
<Version>3.0.2</Version>
7+
<Version>3.1.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.1 schema.</PackageDescription>
99
<Description>NHapi Model V.2.1</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

src/NHapi.Model.V22/NHapi.Model.V22.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v22</PackageId>
7-
<Version>3.0.2</Version>
7+
<Version>3.1.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.2 schema.</PackageDescription>
99
<Description>NHapi Model V.2.2</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

src/NHapi.Model.V23/NHapi.Model.V23.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v23</PackageId>
7-
<Version>3.0.2</Version>
7+
<Version>3.1.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.3 schema.</PackageDescription>
99
<Description>NHapi Model V.2.3</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

src/NHapi.Model.V231/NHapi.Model.V231.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v231</PackageId>
7-
<Version>3.0.2</Version>
7+
<Version>3.1.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.3.1 schema.</PackageDescription>
99
<Description>NHapi Model V.2.3.1</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

src/NHapi.Model.V24/NHapi.Model.V24.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v24</PackageId>
7-
<Version>3.0.2</Version>
7+
<Version>3.1.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.4 schema.</PackageDescription>
99
<Description>NHapi Model V.2.4</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

src/NHapi.Model.V25/NHapi.Model.V25.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v25</PackageId>
7-
<Version>3.0.2</Version>
7+
<Version>3.1.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.5 schema.</PackageDescription>
99
<Description>NHapi Model V.2.5</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

0 commit comments

Comments
 (0)