holoviz / spatialpandas

Pandas extension arrays for spatial/geometric operations
BSD 2-Clause "Simplified" License
308 stars 24 forks source link

Process for creating new release #83

Closed brl0 closed 3 years ago

brl0 commented 3 years ago

@philippjfr, @jbednar,

I tried to create a new release, as I thought I had done before, but the build failed. It appears that the version information param is finding is not what I intended. What is the correct process for creating a release?

Thanks in advance for your guidance and support.

jbednar commented 3 years ago

With our other projects the process is simply `git tag -a -m 'Version X.Y.Z' vX.Y.Z; git push origin vX.Y.Z'; not sure if we've set up spatialpandas the same way.

brl0 commented 3 years ago

That did the trick, thanks for the guidance!

The initial attempt at creating the release was performed through the GitHub interface. This creates a tag, but git describe still returned the old version info, however git describe --tags did show the new tag. Deleting the tag, then tagging and pushing as suggested seemed to solve the problem.