https://bugs.kde.org/show_bug.cgi?id=453346
--- Comment #6 from Ralf Habacker <ralf.habac...@freenet.de> --- (In reply to Ralf Habacker from comment #5) > (In reply to Harald Sitter from comment #3) > > How did you run releaseme > .$ ./releaseme/tarme.rb --origin stable --version 8.1.1 alkimia and then $ ./releaseme/tagme.rb --version 8.1.1 > $ cat release_data > alkimia;8.1;b516a00ebd392abf8bd9174343d34cdd85d136d7;alkimia-8.1.1.tar.xz; > 59f11fb7a8ef1fe79ca2e6650ac34b215386f8cc8393e4ec1e6a2ae6bc306d69 The commit id in column 3 refers to the tagged commit [1] commit b516a00ebd392abf8bd9174343d34cdd85d136d7 (tag: v8.1.1, origin/8.1) Author: Ralf Habacker <ralf.habac...@freenet.de> Date: Tue May 3 13:38:33 2022 +0200 Update version to 8.1.1 and in logme.rb there is: def parse(rev) ancestor = `git describe --abbrev=0 --tags`.strip lines = `git log #{ancestor}..#{rev} --oneline --no-merges` As `ancestor` there is returned $ git describe --abbrev=0 --tags v8.1.1 and the given parameter rev points to [1], which is the same commit. I think `ancestor` needs instead to point to the previous release tag, which would be v8.1.0 in this case. -- You are receiving this mail because: You are watching all bug changes.