MichaelDaum / spreadsheet-parsexlsx

parse XLSX files
http://metacpan.org/release/Spreadsheet-ParseXLSX
1 stars 3 forks source link

Original tags are missing #9

Closed QuLogic closed 8 months ago

QuLogic commented 8 months ago

The tags from the older repo (0.27 and older) appear to be missing here. Just needs a git push --tags from your local copy as it appears that the commits match.

MichaelDaum commented 8 months ago

Yes I noticed that as well. I do push tags regularly from my local repo, but the initial fork is actually the problem as it didn't seem to have transfered the old tags over here... Any idea how to fix that after the fact?

QuLogic commented 8 months ago

Sure, you can fetch the tags from the original repo and push them here:

$ git fetch https://github.com/doy/spreadsheet-parsexlsx --tags
$ git push origin --tags

(assuming origin is the remote for this repo).

MichaelDaum commented 8 months ago

Done. Thanks a lot.