Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing git tags #161

Open
glensc opened this issue Nov 1, 2021 · 3 comments
Open

Missing git tags #161

glensc opened this issue Nov 1, 2021 · 3 comments

Comments

@glensc
Copy link
Contributor

glensc commented Nov 1, 2021

Looks like some tags are missing, but are present in changelog (HISTORY.rst).

  • 1.0.3 (2015-02-28)
  • 1.0.2 (2015-02-17)

there may be more

@glensc
Copy link
Contributor Author

glensc commented Nov 1, 2021

$ grep -B1 '+++' HISTORY.rst |grep .-..-.|awk '{print $1}'|wc -l
53
$ git tag -l |wc -l
44

9 tags are missing!

@glensc
Copy link
Contributor Author

glensc commented Nov 1, 2021

And there are duplicate git tags:

$ git tag -l|fgrep 0.3.3
0.3.3
v0.3.3

@glensc
Copy link
Contributor Author

glensc commented Nov 1, 2021

➔ for tag in $(<tags); do grep -Fq $tag git-tags && continue; echo "missing tag: $tag"; done

missing tag: 2.2.5
missing tag: 2.2.4
missing tag: 2.2.3
missing tag: 2.2.2
missing tag: 2.2.1
missing tag: 2.0.3
missing tag: 2.0.2
missing tag: 2.0.1
missing tag: 1.0.3
missing tag: 1.0.2
missing tag: 0.3.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant