diff --git a/CHANGELOG.md b/CHANGELOG.md index 159d3cb..da3d4cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,8 +14,8 @@ and **Merged pull requests**. Critical items to know are: The versions coincide with releases on pip. Only major versions will be released as tags on Github. ## [0.0.x](https://github.com/singularityhub/sregistry-cli/tree/master) (0.0.x) + - adding rpm spec file, sregistry.cli.spec (0.0.90) - image URI tag should not be changed to lowercase (0.0.89) - - adding rpm spec file, sregistry.cli.spec - adding chunked upload to chunk uploads to Singularity Registry (0.0.88) - fixing shell client bug (0.0.87) - updating Dockerfile and Singularity recipt with additional dependencies for 2.5 (0.0.86). diff --git a/MANIFEST.in b/MANIFEST.in index 67aa493..faf85e8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include README.md LICENSE +include README.md LICENSE sregistry-cli.spec recursive-include sregistry *.png recursive-include sregistry *.sh recursive-include sregistry * diff --git a/README.md b/README.md index cea1d0a..9103870 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Version: 0.0.89 ```bash VERSION=0.0.89 -wget https://github.com/singularityhub/sregistry-cli/archive/0.0.${VERSION}.tar.gz +wget https://github.com/singularityhub/sregistry-cli/archive/${VERSION}.tar.gz ``` 4. Use rpmbuild to build it. diff --git a/sregistry-cli.spec b/sregistry-cli.spec index 76d4b02..b235ee3 100644 --- a/sregistry-cli.spec +++ b/sregistry-cli.spec @@ -3,8 +3,8 @@ # spec file for package sregistry-cli # credit for work goes to the amazing @griznog, John Hanks # -Name: python-sregistry -Version: 0.0.89 +Name: sregistry-cli +Version: 0.0.90 Release: 0 Url: http://www.github.com/singularityhub/sregistry-cli Summary: Command line tool for working with container storage diff --git a/sregistry/version.py b/sregistry/version.py index b2b6bd8..294538b 100644 --- a/sregistry/version.py +++ b/sregistry/version.py @@ -19,7 +19,7 @@ ''' -__version__ = "0.0.89" +__version__ = "0.0.90" AUTHOR = 'Vanessa Sochat' AUTHOR_EMAIL = 'vsochat@stanford.edu' NAME = 'sregistry'