diff --git a/.gitignore b/.gitignore index 484da65..3680e2d 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ BadMedicineTests/obj/ BadMedicineTests/bin/ BadMedicine.Core/obj/ BadMedicine.Core/bin/ +.idea/ diff --git a/CHANGELOG.md b/CHANGELOG.md index e57c227..475ef90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0] - 2024-03-06 + +- Now targets .Net 8.0 - Improve BucketList performance - Some bugfixes change random data generation, cross-version consistency not preserved - Add Equ 2.3.0 - BadMedicine itself now AOT/trim clean, but dependencies are not +- Bump HIC.FAnsiSql from 3.0.1 to 3.1.1 ## [1.1.2] - 2022-11-22 diff --git a/SharedAssemblyInfo.cs b/SharedAssemblyInfo.cs index 189f259..c087b53 100644 --- a/SharedAssemblyInfo.cs +++ b/SharedAssemblyInfo.cs @@ -2,11 +2,11 @@ [assembly: AssemblyCompany("Health Informatics Centre, University of Dundee")] [assembly: AssemblyProduct("Bad Medicine")] -[assembly: AssemblyCopyright("Copyright (c) 2018 - 2022")] +[assembly: AssemblyCopyright("Copyright (c) 2018 - 2024")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // These should be replaced with correct values by the release process -[assembly: AssemblyVersion("1.1.2")] -[assembly: AssemblyFileVersion("1.1.2")] -[assembly: AssemblyInformationalVersion("1.1.2")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0")] +[assembly: AssemblyFileVersion("1.2.0")] +[assembly: AssemblyInformationalVersion("1.2.0")] \ No newline at end of file