Skip to content

Commit

Permalink
Merge pull request #112 from HicServices/develop
Browse files Browse the repository at this point in the history
Prepare release v1.1.1
  • Loading branch information
jas88 committed Oct 31, 2022
2 parents ac7756c + 47080c3 commit e9b811e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget-
- uses: actions/setup-dotnet@v2
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion BadMedicine.Core/BadMedicine.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ BadMedicine differs from other random data generators e.g. Mockaroo, SQL Data Ge
<EmbeddedResource Include="Datasets\Maternity.csv" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="28.0.0" />
<PackageReference Include="CsvHelper" Version="30.0.0" />
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions BadMedicine/BadMedicine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="HIC.FAnsiSql" Version="2.0.4" />
<PackageReference Include="YamlDotNet" Version="11.2.1" />
<PackageReference Include="HIC.FAnsiSql" Version="3.0.1" />
<PackageReference Include="YamlDotNet" Version="12.0.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
Expand Down
6 changes: 3 additions & 3 deletions BadMedicineTests/BadMedicineTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1">
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NunitXml.TestLogger" Version="3.0.117" />
<PackageReference Include="NunitXml.TestLogger" Version="3.0.127" />
</ItemGroup>

<ItemGroup>
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.1] - 2022-10-31

### Dependencies

- Bump CvsHelper from 28.0.0 to 30.0.0
- Bump HIC.FAnsiSql from 2.0.4 to 3.0.1
- Bump YamlDotNet from 11.2.1 to 12.0.2

## [1.1.0] - 2022-07-11

### Added
Expand Down Expand Up @@ -49,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.4] - 2019-07-02

### Changed

- CI changes only (no changes to codebase)

## [0.1.3] - 2019-07-02
Expand All @@ -57,7 +66,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Patient birth dates now go from 1914 (Person.MinimumYearOfBirth) allowing for patients aged up to 100 years

[Unreleased]: https://github.com/HicServices/BadMedicine/compare/v1.1.0...develop
[Unreleased]: https://github.com/HicServices/BadMedicine/compare/v1.1.1...develop
[1.1.1]: https://github.com/HicServices/BadMedicine/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/HicServices/BadMedicine/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/HicServices/BadMedicine/compare/v0.1.6...v1.0.0
[0.1.6]: https://github.com/HicServices/BadMedicine/compare/v0.1.5...v0.1.6
Expand Down
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
[assembly: AssemblyCulture("")]

// These should be replaced with correct values by the release process
[assembly: AssemblyVersion("1.1.0")]
[assembly: AssemblyFileVersion("1.1.0")]
[assembly: AssemblyInformationalVersion("1.1.0")]
[assembly: AssemblyVersion("1.1.1")]
[assembly: AssemblyFileVersion("1.1.1")]
[assembly: AssemblyInformationalVersion("1.1.1")]

namespace System.Runtime.CompilerServices
{
Expand Down

0 comments on commit e9b811e

Please sign in to comment.