clemensg / sqlite3pod

The repository for the sqlite3 podspec used in CocoaPods.
https://www.sqlite.org
MIT License
27 stars 17 forks source link

Publish Git Tags #12

Closed vanniktech closed 3 years ago

vanniktech commented 3 years ago

I'm having a legal requirement where I need to provide links to LICENSES such as https://github.com/clemensg/sqlite3pod/blob/master/LICENSE with the version I'm using. In my case 3.33.0. Providing a link from the master branch isn't enough.

This is one of the 2 libraries I'm using that don't publish git tags. Is it possible to publish git tags?

clemensg commented 3 years ago

Hi I pushed a v3.35.0 tag and will tag the releases from now on.

clemensg commented 3 years ago

FYI: 3.35.1 is coming soon..

vanniktech commented 3 years ago

@clemensg thanks. Would it also be possible to push the old tags for the following versions:

Thanks!

clemensg commented 3 years ago

Hi, I'd rather not retroactively push them. Maybe you can upgrade to the latest version 3.35.1 ?

vanniktech commented 3 years ago

Long term, yes. For now, I'm stuck on 3.33.0.

git checkout b31d3032f58b8c5f479269d560d55a811b2cd194
git tag 3.33.0
git push origin 3.33.0

git checkout dd57a96c2382c0c732a2530e56049d34d98d1fe8
git tag 3.34.0
git push origin 3.34.0

git checkout 590f438d6d781333aa6f45798234801f5e2bfb47
git tag 3.34.1
git push origin 3.34.1

Those are the commands you'd need to execute.

clemensg commented 3 years ago

Yeah I know how, I just did not want to do unnecessary work :) , but as you insist, I'll push them.

vanniktech commented 3 years ago

@clemensg highly appreciated - thanks!