jquery-address icon indicating copy to clipboard operation
jquery-address copied to clipboard

Tags

Open m4rcs opened this issue 11 years ago • 5 comments

Hi,

could you please make a Tag for each Release of your great Plugin, so I can submit it to cdnjs.

See here.

m4rcs avatar Jun 20 '13 14:06 m4rcs

More than willing, but what does it mean "make a Tag"?

Max Favilli [email protected] mobile (+39) 348 3367064 type http://maxfavilli.com in your webbrowser "Be conservative in what you do, be liberal in what you accept from others." (Jon Postel)

On Thu, Jun 20, 2013 at 4:19 PM, m4rcs [email protected] wrote:

Hi,

could you please make a Tag for each Release of your great Plugin, so I can submit it to cdnjs https://github.com/cdnjs/cdnjs.

See here https://github.com/cdnjs/cdnjs/pull/1354.

— Reply to this email directly or view it on GitHubhttps://github.com/asual/jquery-address/issues/176 .

max-favilli avatar Jun 20 '13 14:06 max-favilli

Take a look at the git manual: http://git-scm.com/book/en/Git-Basics-Tagging

m4rcs avatar Jun 20 '13 14:06 m4rcs

Please take the 30 seconds needed to resolve this issue. All you need to do is checkout the right revision and run git tag <name>. For example, git tag v1.7

cowwoc avatar Jul 21 '14 17:07 cowwoc

@asual +1 for this I think It would be really nice to have tag, as it'll help to use this library properly as bower dependency instead of depending on master branch (which could be unstable)

{
    "dependencies": {
        "jquery-address": "master"
    } 
}

vs

{
    "dependencies": {
        "jquery-address": "~1.6"
    } 
}

Skysplit avatar Oct 29 '14 09:10 Skysplit

i'm also looking for this!

but authors should not modify existing releases, once v1.6 is tagged, next version should be v1.6.1, not re-tag same version again.

i've created tags in my repo, owners with push permission to this repo can pull in the tags:

git clone https://github.com/asual/jquery-address.git
cd jquery-address
git remote add glen https://github.com/glensc/jquery-address.git
git fetch glen
git push origin --tags -n
git push origin --tags

-n will show what tags would be pushed, if all looks ok, run without it. but you can push out also individual tags:

git push origin v1.3

tagged for now:

  • v1.0 - - unable to find matching commit in git for this zip
  • v1.1 2b59e2e4801c1ea1e21c4c14ebcea34600f98077
  • v1.2 c9cf5c28445e1ee0905bdfc7adc3a67122e69a6b
  • v1.2.1 52765e646fd651763516cdb43598136c9b42e71a
  • v1.2.2 5ca432e35dc13270ae104f877873c8f262285a7b
  • v1.3 5aa2dd45089f61739956897ba003b02c63307bc9
  • v1.3.1 b505e9a1b360bc61370f0688ed2cd5dbc2a278eb - this is not exact content as zip, but preceeding and next commit are very different already
  • v1.3.2 bc1cae60624a7412c183cf4b398a766111b82bf2
  • v1.4 7d51e2c16e4f6f6a396f038f7f24898b819ee009
  • v1.5 33d0c5d9913d30ba6305496a202adbc8fdc6767b
  • v1.6 - not created, as can not find any zip for this release to check which commit matches

i think v1.6 should be not tagged at all if exact commit can be found, and next version v1.7 (or 1.6.1) be created instead.

glensc avatar Oct 28 '15 13:10 glensc