utkarshkukreti / select.rs

A Rust library to extract useful data from HTML documents, suitable for web scraping.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Consider using tags for releases.

aleksanb opened this issue · comments

To easier check up what cargo releases actually correspond to what source code,
it would be nice to use git tags to tag the HEADs of the releases.

Thanks for the reminder. I've tagged all the releases manually for now. Hopefully Cargo will add auto tagging feature soon.

➜  select.rs git:(master) git log --oneline | grep 'chore(version)'
8d6d1d8 chore(version): bump to 0.3.0
500e7b4 chore(version): bump to 0.2.2
4285037 chore(version): bump to 0.2.1
a7a11db chore(version): bump to 0.2.0
8feba0c chore(version): bump to 0.1.2
972570c chore(version): bump to 0.1.1
➜  select.rs git:(master) git tag 0.1.1 972570c
➜  select.rs git:(master) git tag 0.1.2 8feba0c
➜  select.rs git:(master) git tag 0.2.0 a7a11db
➜  select.rs git:(master) git tag 0.2.1 4285037
➜  select.rs git:(master) git tag 0.2.2 500e7b4
➜  select.rs git:(master) git tag 0.3.0 8d6d1d8