File tree Expand file tree Collapse file tree 3 files changed +33
-5
lines changed Expand file tree Collapse file tree 3 files changed +33
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# [ Unreleased]
4
4
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
+
5
14
# [ 0.4.0] - 2024-07-17
6
15
7
16
- Fix calling ii with file paths (#510 )
@@ -173,4 +182,5 @@ Initial version
173
182
[ 0.2.1 ] : https://github.com/SMI/IsIdentifiable/compare/v0.2.0..v0.2.1
174
183
[ 0.3.0 ] : https://github.com/SMI/IsIdentifiable/compare/v0.2.1..v0.3.0
175
184
[ 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
Original file line number Diff line number Diff line change 2
2
using System . Reflection ;
3
3
4
4
[ assembly: AssemblyCompany ( "Universities of Dundee and Edinburgh" ) ]
5
- [ assembly: AssemblyCopyright ( "Copyright © SMI Project 2018-2024 " ) ]
5
+ [ assembly: AssemblyCopyright ( "Copyright © SMI Project 2018-2025 " ) ]
6
6
[ assembly: AssemblyTrademark ( "" ) ]
7
7
[ assembly: AssemblyCulture ( "" ) ]
8
8
9
9
// 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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments