From 8ea0bd78a7a8b01a7ec586e2243f747fbc572756 Mon Sep 17 00:00:00 2001 From: Ruairidh MacLeod Date: Thu, 21 Jul 2022 16:03:45 +0100 Subject: [PATCH 1/3] update changelog for release --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 971c09914..647e64a36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ A raw git diff can be seen [here][unreleased]. +## [5.1.3] 2022-07-21 + +- [#1229](https://github.com/SMI/SmiServices/pull/1229) by dependabot. Bump IsIdentifiable from 0.0.4 to 0.0.5 to fix broken API + ## [5.1.2] 2022-07-18 ## Bugfix @@ -1112,7 +1116,8 @@ First stable release after importing the repository from the private - Anonymous `MappingTableName` must now be fully specified to pass validation (e.g. `mydb.mytbl`). Previously skipping database portion was supported. -[unreleased]: https://github.com/SMI/SmiServices/compare/v5.1.2...master +[unreleased]: https://github.com/SMI/SmiServices/compare/v5.1.3...master +[5.1.3]: https://github.com/SMI/SmiServices/compare/v5.1.2...v5.1.3 [5.1.2]: https://github.com/SMI/SmiServices/compare/v5.1.1...v5.1.2 [5.1.1]: https://github.com/SMI/SmiServices/compare/v5.1.0...v5.1.1 [5.1.0]: https://github.com/SMI/SmiServices/compare/v5.0.1...v5.1.0 From e429abb14baf3c8e72f7966fad16c227bdec84c8 Mon Sep 17 00:00:00 2001 From: Ruairidh MacLeod Date: Thu, 21 Jul 2022 16:04:06 +0100 Subject: [PATCH 2/3] bump versions for release --- README.md | 2 +- src/SharedAssemblyInfo.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 25053326b..2eaa60ce2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![GitHub](https://img.shields.io/github/license/SMI/SmiServices) [![Total alerts](https://img.shields.io/lgtm/alerts/g/SMI/SmiServices.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/SMI/SmiServices/alerts/) -Version: `5.1.2` +Version: `5.1.3` # SMI Services diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index dd48de451..504dbe33a 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -7,6 +7,6 @@ [assembly: AssemblyCulture("")] // These should be overwritten by release builds -[assembly: AssemblyVersion("5.1.1")] -[assembly: AssemblyFileVersion("5.1.2")] -[assembly: AssemblyInformationalVersion("5.1.2")] // This one can have the extra build info after it +[assembly: AssemblyVersion("5.1.3")] +[assembly: AssemblyFileVersion("5.1.3")] +[assembly: AssemblyInformationalVersion("5.1.3")] // This one can have the extra build info after it From 88dea4dcd3236457eb300784751794290e0527a9 Mon Sep 17 00:00:00 2001 From: Ruairidh MacLeod Date: Thu, 21 Jul 2022 16:04:30 +0100 Subject: [PATCH 3/3] update command in RELEASING doc --- docs/RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/RELEASING.md b/docs/RELEASING.md index cb8ebbfc2..e4b2abf67 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -36,7 +36,7 @@ The release workflow is to checkout a new `release/` branch from master, update Switched to a new branch 'release/v1.2.3' ``` -- Update the [CHANGELOG](/CHANGELOG.md) for the new release. This involves running the `bin/release/updateChangelog.py` script. Review the diff and check for any obvious errors. +- Update the [CHANGELOG](/CHANGELOG.md) for the new release. This involves running `./bin/release/updateChangelog.py `. Note that this currently requires `prettier` to be installed from npm. Review the diff and check for any obvious errors. - Update any other files referencing the version. To see an example, check the previous release PR. At time of writing, these are: - `README.md`: Bump the version in the header