diff --git a/CHANGELOG.md b/CHANGELOG.md index 68904b404..3432a91d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,45 @@ A raw git diff can be seen [here][unreleased]. +## [3.2.0] 2021-07-05 + +## Feature + +- [#795](https://github.com/SMI/SmiServices/pull/795) by tznind. Added support + for specifying IsIdentifiable CLI options in the yaml config files instead + of command line (command line will always take precedence if both are + specified) +- [#797](https://github.com/SMI/SmiServices/pull/797) by tznind. Added custom + themes to IsIdentifiableReviewer. Use flag `--theme mytheme.yaml` +- [#801](https://github.com/SMI/SmiServices/pull/801) by tznind. Added help + and cancel buttons to custom pattern dialog in reviewer +- [#802](https://github.com/SMI/SmiServices/pull/802) by tznind. Added + IsIdentifiableReviewer settings into main yaml config +- [#818](https://github.com/SMI/SmiServices/pull/818) by tznind. Added Rules + Manager to IsIdentifiable Reviewer + +## Bugfix + +- [#787](https://github.com/SMI/SmiServices/pull/787) by rkm. Fix the call to + the release changelog script +- [#788](https://github.com/SMI/SmiServices/pull/788) by rkm. Require all CI + tests to pass before packaging runs +- [#789](https://github.com/SMI/SmiServices/pull/789) by rkm. Don't upload + coverage for tagged builds +- [#796](https://github.com/SMI/SmiServices/pull/796) by tznind. Fixed bug + opening corrupted reports in IsIdentifiableReviewer crashing the application +- [#806](https://github.com/SMI/SmiServices/pull/806) by tznind. Replace use + of GlobalColorScheme with the proper static members in Terminal.Gui that + will propagate correctly for all windows without having to set them + manually. +- [#811](https://github.com/SMI/SmiServices/pull/811) by rkm. Fix coverage + task always running even if a previous task failed + +## Doc + +- [#823](https://github.com/SMI/SmiServices/pull/823) by tznind. Refresh + documentation for IsIdentifiableReviewer + ## [3.1.0] 2021-06-11 ## Feature @@ -882,7 +921,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/v3.1.0...master +[unreleased]: https://github.com/SMI/SmiServices/compare/v3.2.0...master +[3.2.0]: https://github.com/SMI/SmiServices/compare/v3.1.0...v3.2.0 [3.1.0]: https://github.com/SMI/SmiServices/compare/v3.0.2...v3.1.0 [3.0.2]: https://github.com/SMI/SmiServices/compare/v3.0.1...v3.0.2 [3.0.1]: https://github.com/SMI/SmiServices/compare/v3.0.0...v3.0.1 diff --git a/README.md b/README.md index 650d6242c..efed2705d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![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: `3.1.0` +Version: `3.2.0` # SMI Services diff --git a/docs/RELEASING.md b/docs/RELEASING.md index d4286b23c..4a9f22541 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -13,7 +13,7 @@ The release worflow is to checkout a new `release/` branch from master, update t - Check that a [news file][news_files] is present for each merged PR since the previous release. To do this, checkout the latest `master` commit and list all the merged PRs since the last release, e.g.: ```console $ git checkout master && git pull - $ git log --merges --oneline .. | grep -v dependabot + $ git log --oneline .. | grep -vP "dependabot|Bump" | grep -P '#\d+' ec182696 Merge pull request #430 from SMI/feature/extraction-fixes 051a134e Merge pull request #444 from SMI/feature/trigger-updates 65fcfe41 Merge pull request #440 from SMI/feature/value-updater diff --git a/news/787-bugfix.md b/news/787-bugfix.md deleted file mode 100644 index a3acc35ea..000000000 --- a/news/787-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix the call to the release changelog script diff --git a/news/788-bugfix.md b/news/788-bugfix.md deleted file mode 100644 index 6eb1a63e3..000000000 --- a/news/788-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Require all CI tests to pass before packaging runs diff --git a/news/789-bugfix.md b/news/789-bugfix.md deleted file mode 100644 index a68cb6e3c..000000000 --- a/news/789-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Don't upload coverage for tagged builds diff --git a/news/795-feature.md b/news/795-feature.md deleted file mode 100644 index f8f5ed686..000000000 --- a/news/795-feature.md +++ /dev/null @@ -1 +0,0 @@ -Added support for specifying IsIdentifiable CLI options in the yaml config files instead of command line (command line will always take precedence if both are specified) \ No newline at end of file diff --git a/news/796-bugfix.md b/news/796-bugfix.md deleted file mode 100644 index d49da0d20..000000000 --- a/news/796-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed bug opening corrupted reports in IsIdentifiableReviewer crashing the application \ No newline at end of file diff --git a/news/797-feature.md b/news/797-feature.md deleted file mode 100644 index 1f50b0fe8..000000000 --- a/news/797-feature.md +++ /dev/null @@ -1 +0,0 @@ -Added custom themes to IsIdentifiableReviewer. Use flag `--theme mytheme.yaml` \ No newline at end of file diff --git a/news/801-feature.md b/news/801-feature.md deleted file mode 100644 index db38ccd47..000000000 --- a/news/801-feature.md +++ /dev/null @@ -1 +0,0 @@ -Added help and cancel buttons to custom pattern dialog in reviewer \ No newline at end of file diff --git a/news/802-feature.md b/news/802-feature.md deleted file mode 100644 index 5b2117e7c..000000000 --- a/news/802-feature.md +++ /dev/null @@ -1 +0,0 @@ -Added IsIdentifiableReviewer settings into main yaml config \ No newline at end of file diff --git a/news/811-bugfix.md b/news/811-bugfix.md deleted file mode 100644 index 4fcb1c77c..000000000 --- a/news/811-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix coverage task always running even if a previous task failed diff --git a/news/818-feature.md b/news/818-feature.md deleted file mode 100644 index 209f264ee..000000000 --- a/news/818-feature.md +++ /dev/null @@ -1 +0,0 @@ -Added Rules Manager to IsIdentifiable Reviewer \ No newline at end of file diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 9cdea5c10..27c1ffac2 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -7,6 +7,6 @@ [assembly: AssemblyCulture("")] // These should be overwritten by release builds -[assembly: AssemblyVersion("3.1.0")] -[assembly: AssemblyFileVersion("3.1.0")] -[assembly: AssemblyInformationalVersion("3.1.0")] // This one can have the extra build info after it +[assembly: AssemblyVersion("3.2.0")] +[assembly: AssemblyFileVersion("3.2.0")] +[assembly: AssemblyInformationalVersion("3.2.0")] // This one can have the extra build info after it