Skip to content
Lewis John McGibbney edited this page Mar 30, 2019 · 2 revisions

Release HOWTO

The following document should be followed for anyone wishing to release iPReS.

Update app/project.clj

Ensure that the following code in app/project.clj indicates the version you intend to release. Note, this needs to contain semantic versioning e.g. 0.1.0

(defproject app "0.1.0"

Create a Tag for the Release

Create a tag with the following command

git tag -a <VERSION> -m "iPReS <VERSION>"

Push the tag to remote Github server

git push --tags

Conclusion

If all went well, you've successfully released iPReS. Please announce the following release to the following channels

TO: opendev <opendev@jpl.nasa.gov>; podaac-all <podaac-all@jpl.nasa.gov>; opensource <opensource@jpl.nasa.gov>; opensource@lists.nasa.gov <opensource@lists.nasa.gov>; osemeeting@jpl.nasa.gov

TOPIC: [ANNOUNCEMENT] iPReS 0.1.0 Released

Hi All,

I am happy to announce release and immediate availability of iPReS 0.1.0 [0]

What is iPReS?
The Internationalization (i18n) Product Retrieval Service (iPReS) is a web service and client providing i18n-type access to products and product metadata contained within NASA JPL's Physical Oceanography Distributed Active Archive Center otherwise known as PO.DAAC. Full documentation can be found at [1].

What kind of language translations are available?
https://github.com/lewismc/iPReS/#supported-product-translations

How can I install iPReS?
https://github.com/lewismc/iPReS/#installation

Community
Please report any issues to the iPReS issue tracker at [2].

License
iPReS is licensed permissively under the Apache License v2.0, more information can be found at [3].

Best
Lewis

[0] https://github.com/lewismc/iPReS/releases/tag/0.1.0
[1] https://github.com/lewismc/iPReS
[2] https://github.com/lewismc/iPReS/issues
[3] https://github.com/lewismc/iPReS#license

Clone this wiki locally