Skip to content

Commit 2c16dd9

Browse files
committed
Release v0.5.0
1 parent 36b0b8b commit 2c16dd9

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
# [Unreleased]
44

5+
# [0.5.0] - 2025-04-21
6+
7+
- Fixup warnings & pre-compile some regexes (#535)
8+
- Tidy RegexRule, annotate some nullables (#573)
9+
- Remove Equ (#617)
10+
- Add dotnet-sdk dependabot updates (#656)
11+
- Re-apply changes from old hotfix/ifpartpattern branch (#660)
12+
- Bump .NET SDK to 9.0.203 and use in CI (#664)
13+
514
# [0.4.0] - 2024-07-17
615

716
- Fix calling ii with file paths (#510)
@@ -173,4 +182,5 @@ Initial version
173182
[0.2.1]: https://github.com/SMI/IsIdentifiable/compare/v0.2.0..v0.2.1
174183
[0.3.0]: https://github.com/SMI/IsIdentifiable/compare/v0.2.1..v0.3.0
175184
[0.4.0]: https://github.com/SMI/IsIdentifiable/compare/v0.3.0..v0.4.0
176-
[unreleased]: https://github.com/SMI/IsIdentifiable/compare/v0.4.0..main
185+
[0.5.0]: https://github.com/SMI/IsIdentifiable/compare/v0.4.0..v0.5.0
186+
[unreleased]: https://github.com/SMI/IsIdentifiable/compare/v0.5.0..main

SharedAssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
using System.Reflection;
33

44
[assembly: AssemblyCompany("Universities of Dundee and Edinburgh")]
5-
[assembly: AssemblyCopyright("Copyright © SMI Project 2018-2024")]
5+
[assembly: AssemblyCopyright("Copyright © SMI Project 2018-2025")]
66
[assembly: AssemblyTrademark("")]
77
[assembly: AssemblyCulture("")]
88

99
// These should be overwritten by release builds
10-
[assembly: AssemblyVersion("0.4.0")]
11-
[assembly: AssemblyFileVersion("0.4.0")]
12-
[assembly: AssemblyInformationalVersion("0.4.0")] // This one can have the extra build info after it
10+
[assembly: AssemblyVersion("0.5.0")]
11+
[assembly: AssemblyFileVersion("0.5.0")]
12+
[assembly: AssemblyInformationalVersion("0.5.0")] // This one can have the extra build info after it

missing-news.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
if [ ! -d news ]
4+
then
5+
echo Must be run from main SmiServices directory!
6+
exit
7+
fi
8+
9+
lasttag=$(git describe --tags --abbrev=0)
10+
11+
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`
12+
do
13+
if ! find news -name "${i}*.md" -print -quit | grep -q .
14+
then
15+
echo -n "Missing news file for PR #${i}:"
16+
curl -s https://api.github.com/repos/SMI/IsIdentifiable/pulls/${i} | grep \"title\"|cut -d'"' -f4 | grep . || echo
17+
fi
18+
done

0 commit comments

Comments
 (0)