If you need to compare the changes between two tags, you can do so with git. One of its uses is if you want to compare releases, which are differentiated by their tags in the branch.
The command below provides a tag range from 1.0.0 to 1.0.1. Note that it doesn’t include the commit referenced by 1.0.0; it includes the commits after that until the end of the range.
git log 1.0.0...1.0.1 --oneline
2b22bf2 (HEAD -> main, tag: 1.0.1, origin/main, origin/HEAD) Merge branch 'main' of repohere
85db8ed Change1
c13318c Change2
2446fe8 Change3
a3c2c81 Change4