spark-xarray icon indicating copy to clipboard operation
spark-xarray copied to clipboard

Make a release

Open davidedelvento opened this issue 8 years ago • 2 comments

@andersy005 @kmpaul Can you please make a release so we can officially install this on Cheyenne? CISL can't install unreleased software. If you haven't worked with releases with git, it's simply:

git tag -n1                          # show existing releases, with message
git tag v0.3 -m "release v0.3”       # the message is shown in the previous log and somewhere else
git push --follow-tags               # otherwise tags aren’t pushed

If you make a mistake and want to delete a release:

git tag -d v0.3.1                   # delete tag (not pushed upstream, otherwise need also the following)
git push origin :refs/tags/v0.3.1   # after previous, only if pushed -- very bad thing to do, but if you really must you can

davidedelvento avatar Aug 11 '17 23:08 davidedelvento

@davidedelvento @kpaul The current version is not stable yet. That's why I haven't made any release yet. I am hoping to make the first release once I have a working module for the bias correction use case..

andersy005 avatar Aug 18 '17 15:08 andersy005

That's fair. If it's unstable, I think it shouldn't be released or made a module for general use.

On Fri, Aug 18, 2017 at 9:30 AM Anderson Banihirwe [email protected] wrote:

@davidedelvento https://github.com/davidedelvento @kpaul https://github.com/kpaul The current version is not stable yet. That's why I haven't made any release yet. I am hoping to make the first release once I have a working module for the bias correction use case..

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/andersy005/spark-xarray/issues/6#issuecomment-323385509, or mute the thread https://github.com/notifications/unsubscribe-auth/AK4fg7WCUV4CXu27BdSeVtHTED5z9lH1ks5sZa4agaJpZM4O1N0z .

-- Kevin Paul, PhD Project Scientist, Head of I/O & Workflow Applications (IOWA)

The National Center for Atmospheric Research Computational and Information Systems Laboratory 1850 Table Mesa Dr Boulder, CO 80305

Phone: (303) 497-2441 Office: ML460B

kmpaul avatar Aug 18 '17 15:08 kmpaul