Skip to content

Commit

Permalink
Merge pull request #1258 from SMI/release/v5.2.0
Browse files Browse the repository at this point in the history
Release v5.2.0
  • Loading branch information
rkm authored Aug 10, 2022
2 parents 71fe07f + 0948bce commit 224ec42
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 14 deletions.
31 changes: 29 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,35 @@ A raw git diff can be seen [here][unreleased].

<!--next-->

## [5.2.0] 2022-08-10

## Feature

- [#1254](https://github.com/SMI/SmiServices/pull/1254) by tznind. Change
"Setup" to a library and make it runnable from smi as verb
- [#1255](https://github.com/SMI/SmiServices/pull/1255) by tznind. Add support
for running RDMP with YamlRepository backend

## Bugfix

- [#1241](https://github.com/SMI/SmiServices/pull/1241) by rkm. Refactor
IsIdentifiableQueueConsumer
- Improve exception handling to better handle errors caused by IClassifier
- Remove redundant `fileSystemRoot` from constructor
- Add tests
- [#1256](https://github.com/SMI/SmiServices/pull/1256) by rkm. Ensure MongoDB
service started in Windows CI. Caused by
https://github.com/actions/runner-images/issues/5949.

## Removal

- [#1251](https://github.com/SMI/SmiServices/pull/1251) by rkm. Remove
remaining IsIdentifiable code and CI config

## [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
- [#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

Expand Down Expand Up @@ -1116,7 +1142,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.3...master
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.2.0...master
[5.2.0]: https://github.com/SMI/SmiServices/compare/v5.1.3...v5.2.0
[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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3`
Version: `5.2.0`

# SMI Services

Expand Down
2 changes: 1 addition & 1 deletion bin/release/missing-news.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi

lasttag=$(git tag -l|tail -n1)

for i in `git log --oneline ${lasttag}..|egrep -v "dependabot|Bump|pre-commit-ci"|egrep -o 'Merge pull request #\d+'|cut -d'#' -f2`
for i in `git log --oneline ${lasttag}..|egrep -v "dependabot|Bump|pre-commit-ci|snyk-fix" | grep -Po 'Merge pull request #\d+'|cut -d'#' -f2`
do
if ! find news -name "${i}*.md" -print -quit | grep -q .
then
Expand Down
4 changes: 0 additions & 4 deletions news/1241-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1251-removal.md

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/1256-bugfix.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("5.1.3")]
[assembly: AssemblyFileVersion("5.1.3")]
[assembly: AssemblyInformationalVersion("5.1.3")] // This one can have the extra build info after it
[assembly: AssemblyVersion("5.2.0")]
[assembly: AssemblyFileVersion("5.2.0")]
[assembly: AssemblyInformationalVersion("5.2.0")] // This one can have the extra build info after it

0 comments on commit 224ec42

Please sign in to comment.