From 6919fe8eaa878f971d40821d8787902fb659e6b5 Mon Sep 17 00:00:00 2001 From: James Friel Date: Wed, 15 May 2024 18:32:45 +0100 Subject: [PATCH] bump to 1.2.2 and add deprication warning (#196) * bump to 1.2.2 and add deprecation warning --------- Co-authored-by: James A Sutherland <> --- CHANGELOG.md | 7 +++++-- README.md | 8 ++++++++ SharedAssemblyInfo.cs | 6 +++--- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 055194f..0f5af04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.2.2] - 2024-035-16 + +-Add warning about naming deprecation, see [README](./README.md#Deprecation) ## [1.2.1] - 2024-03-18 @@ -86,7 +88,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.2.1...main +[Unreleased]: https://github.com/HicServices/BadMedicine/compare/v1.2.2...main +[1.2.2]: https://github.com/HicServices/BadMedicine/compare/v1.2.1...v1.2.2 [1.2.1]: https://github.com/HicServices/BadMedicine/compare/v1.2.0...v1.2.1 [1.2.0]: https://github.com/HicServices/BadMedicine/compare/v1.1.2...v1.2.0 [1.1.2]: https://github.com/HicServices/BadMedicine/compare/v1.1.1...v1.1.2 diff --git a/README.md b/README.md index 40a3236..8b75571 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # BadMedicine +## Deprecation Notice + +BadMedicine v1.2.2 will be the final release under this name. + +The project will be renamed SynthEHR in all future releases, starting at v2.0.0 + +The project will be able to be found on [Github](https://gituhb.com/HICServices/SynthEHR) and on [Nuget](https://www.nuget.org/packages/HIC.SynthEHR/) + [![Build Status](https://github.com/HICServices/BadMedicine/actions/workflows/testpack.yml/badge.svg?branch=develop)](https://travis-ci.org/HicServices/BadMedicine) [![NuGet Badge](https://buildstats.info/nuget/HIC.BadMedicine)](https://www.nuget.org/packages/HIC.BadMedicine/) Library and CLI for randomly generating medical data like you might get out of an Electronic Health Records (EHR) system. It is intended for generating data for demos and testing ETL / cohort generation/ data management tools. diff --git a/SharedAssemblyInfo.cs b/SharedAssemblyInfo.cs index fdfbe5a..767edff 100644 --- a/SharedAssemblyInfo.cs +++ b/SharedAssemblyInfo.cs @@ -7,6 +7,6 @@ [assembly: AssemblyCulture("")] // These should be replaced with correct values by the release process -[assembly: AssemblyVersion("1.2.1")] -[assembly: AssemblyFileVersion("1.2.1")] -[assembly: AssemblyInformationalVersion("1.2.1")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.2")] +[assembly: AssemblyFileVersion("1.2.2")] +[assembly: AssemblyInformationalVersion("1.2.2")] \ No newline at end of file