Skip to content

Commit

Permalink
Merge pull request #824 from SMI/release/v3.2.0
Browse files Browse the repository at this point in the history
Release v3.2.0
  • Loading branch information
rkm authored Jul 5, 2021
2 parents ed63c27 + 13c02e3 commit 663a0a3
Show file tree
Hide file tree
Showing 14 changed files with 46 additions and 16 deletions.
42 changes: 41 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,45 @@ A raw git diff can be seen [here][unreleased].

<!--next-->

## [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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <previous tag>.. | grep -v dependabot
$ git log --oneline <previous_tag>.. | 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
Expand Down
1 change: 0 additions & 1 deletion news/787-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/788-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/789-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/795-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/796-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/797-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/801-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/802-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/811-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/818-feature.md

This file was deleted.

6 changes: 3 additions & 3 deletions src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 663a0a3

Please sign in to comment.