# The cloudmesh bumpversion command
[![GitHub Repo](https://img.shields.io/badge/github-repo-green.svg)](https://github.com/cloudmesh/cloudmesh-bumpversion)
[![image](https://img.shields.io/pypi/pyversions/cloudmesh-bumpversion.svg)](https://pypi.org/project/cloudmesh-bumpversion)
[![image](https://img.shields.io/pypi/v/cloudmesh-bumpversion.svg)](https://pypi.org/project/cloudmesh-bumpversion/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![General badge](https://img.shields.io/badge/Status-Production-<COLOR>.svg)](https://shields.io/)
[![GitHub issues](https://img.shields.io/github/issues/cloudmesh/cloudmesh-bumpversion.svg)](https://github.com/cloudmesh/cloudmesh-bumpversion/issues)
[![Contributors](https://img.shields.io/github/contributors/cloudmesh/cloudmesh-bumpversion.svg)](https://github.com/cloudmesh/cloudmesh-bumpversion/graphs/contributors)
[![General badge](https://img.shields.io/badge/Other-repos-<COLOR>.svg)](https://github.com/cloudmesh/cloudmesh)
[![Linux](https://img.shields.io/badge/OS-Linux-orange.svg)](https://www.linux.org/)
[![macOS](https://img.shields.io/badge/OS-macOS-lightgrey.svg)](https://www.apple.com/macos)
[![Windows](https://img.shields.io/badge/OS-Windows-blue.svg)](https://www.microsoft.com/windows)
## Manual Page
```
Usage:
bumpversion patch
bumpversion minor
bumpversion major
bumpversion info
bumpversion set --version=VERSION
bumpversion --config=YAML --version=VERSION
Manages bumping the version for cloudmesh
Arguments:
VERSION the version number to set
YAML the yaml file name
Options:
--version=VERSION the version number to set
--config=YAML the YAML FILE
Description:
this program modifies the following files.
It reads the VERSION form the ./VERSION file
the number is of the form MAJOR.MINOR.PATCH
It increase the specified number
It writes the number to the files
./VERSION
./cloudmesh/cloudmesh-PACKAGE/__version__.py
> bumpversion patch
> increments the third number
> bumpversion minor
> increments the second number
> bumpversion mayor
> increments the first number
> bumpversion info
> lists the numbers and identifies if one of them is wrong
> bumpversion set --version=VERSION
> sets the version number to the spcified number
> bumpversion --config=YAML --version=VERSION
> sets the versions in the files specifed in the yaml file
> Example: bumpversion.yaml
>
> bumpversion:
> - cloudmesh/bumpversion/__version__.py
> - VERSION
```
## Manual Page
<!-- START-MANUAL -->
```
Command bar
===========
::
Usage:
bar --file=FILE
bar list
bar [--parameter=PARAMETER] [--experiment=EXPERIMENT] [COMMAND...]
This command does some useful things.
Arguments:
FILE a file name
PARAMETER a parameterized parameter of the form "a[0-3],a5"
Options:
-f specify the file
Description:
> cms bar --parameter="a[1-2,5],a10"
> example on how to use Parameter.expand. See source code at
> https://github.com/cloudmesh/cloudmesh-bar/blob/main/cloudmesh/bar/command/bar.py
> prints the expanded parameter as a list
> ['a1', 'a2', 'a3', 'a4', 'a5', 'a10']
> bar exp --experiment=a=b,c=d
> example on how to use Parameter.arguments_to_dict. See source code at
> https://github.com/cloudmesh/cloudmesh-bar/blob/main/cloudmesh/bar/command/bar.py
> prints the parameter as dict
> {'a': 'b', 'c': 'd'}
```
<!-- STOP-MANUAL -->
Raw data
{
"_id": null,
"home_page": "",
"name": "cloudmesh-bumpversion",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Gregor von Laszewski <laszewski@gmail.com>",
"keywords": "helper library,cloudmesh",
"author": "",
"author_email": "Gregor von Laszewski <laszewski@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/bd/20/b9e904cf9a6f2154b8d410b999e7e4254f7a6600f72deef10ca3862d4cdf/cloudmesh-bumpversion-5.0.29.tar.gz",
"platform": null,
"description": "# The cloudmesh bumpversion command\n\n[![GitHub Repo](https://img.shields.io/badge/github-repo-green.svg)](https://github.com/cloudmesh/cloudmesh-bumpversion)\n[![image](https://img.shields.io/pypi/pyversions/cloudmesh-bumpversion.svg)](https://pypi.org/project/cloudmesh-bumpversion)\n[![image](https://img.shields.io/pypi/v/cloudmesh-bumpversion.svg)](https://pypi.org/project/cloudmesh-bumpversion/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n[![General badge](https://img.shields.io/badge/Status-Production-<COLOR>.svg)](https://shields.io/)\n[![GitHub issues](https://img.shields.io/github/issues/cloudmesh/cloudmesh-bumpversion.svg)](https://github.com/cloudmesh/cloudmesh-bumpversion/issues)\n[![Contributors](https://img.shields.io/github/contributors/cloudmesh/cloudmesh-bumpversion.svg)](https://github.com/cloudmesh/cloudmesh-bumpversion/graphs/contributors)\n[![General badge](https://img.shields.io/badge/Other-repos-<COLOR>.svg)](https://github.com/cloudmesh/cloudmesh)\n\n\n[![Linux](https://img.shields.io/badge/OS-Linux-orange.svg)](https://www.linux.org/)\n[![macOS](https://img.shields.io/badge/OS-macOS-lightgrey.svg)](https://www.apple.com/macos)\n[![Windows](https://img.shields.io/badge/OS-Windows-blue.svg)](https://www.microsoft.com/windows)\n\n## Manual Page\n\n```\n\n Usage:\n bumpversion patch\n bumpversion minor\n bumpversion major\n bumpversion info\n bumpversion set --version=VERSION\n bumpversion --config=YAML --version=VERSION\n\n\n Manages bumping the version for cloudmesh\n\n Arguments:\n VERSION the version number to set\n YAML the yaml file name\n\n Options:\n --version=VERSION the version number to set\n --config=YAML the YAML FILE\n\n Description:\n\n this program modifies the following files.\n\n It reads the VERSION form the ./VERSION file\n the number is of the form MAJOR.MINOR.PATCH\n It increase the specified number\n It writes the number to the files\n ./VERSION\n ./cloudmesh/cloudmesh-PACKAGE/__version__.py\n\n > bumpversion patch\n > increments the third number\n\n > bumpversion minor\n > increments the second number\n\n > bumpversion mayor\n > increments the first number\n\n > bumpversion info\n > lists the numbers and identifies if one of them is wrong\n\n > bumpversion set --version=VERSION\n > sets the version number to the spcified number\n\n > bumpversion --config=YAML --version=VERSION\n > sets the versions in the files specifed in the yaml file\n\n > Example: bumpversion.yaml\n >\n > bumpversion:\n > - cloudmesh/bumpversion/__version__.py\n > - VERSION\n\n```\n\n## Manual Page\n\n<!-- START-MANUAL -->\n```\nCommand bar\n===========\n\n::\n\n Usage:\n bar --file=FILE\n bar list\n bar [--parameter=PARAMETER] [--experiment=EXPERIMENT] [COMMAND...]\n\n This command does some useful things.\n\n Arguments:\n FILE a file name\n PARAMETER a parameterized parameter of the form \"a[0-3],a5\"\n\n Options:\n -f specify the file\n\n Description:\n\n > cms bar --parameter=\"a[1-2,5],a10\"\n > example on how to use Parameter.expand. See source code at\n > https://github.com/cloudmesh/cloudmesh-bar/blob/main/cloudmesh/bar/command/bar.py\n > prints the expanded parameter as a list\n > ['a1', 'a2', 'a3', 'a4', 'a5', 'a10']\n\n > bar exp --experiment=a=b,c=d\n > example on how to use Parameter.arguments_to_dict. See source code at\n > https://github.com/cloudmesh/cloudmesh-bar/blob/main/cloudmesh/bar/command/bar.py\n > prints the parameter as dict\n > {'a': 'b', 'c': 'd'}\n\n```\n<!-- STOP-MANUAL -->\n",
"bugtrack_url": null,
"license": "Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ Copyright 2021,2022 Gregor von Laszewski, University of Virginia Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ",
"summary": "A cloudmesh command to bump the version in cloudmesh projects",
"version": "5.0.29",
"project_urls": {
"Changelog": "https://github.com/cloudmesh/cloudmesh-bumpversion/blob/main/CHANGELOG.md",
"Documentation": "https://github.com/cloudmesh/cloudmesh-bumpversion/blob/main/README.md",
"Homepage": "https://github.com/cloudmesh/cloudmesh-bumpversion",
"Issues": "https://github.com/cloudmesh/cloudmesh-bumpversion/issues",
"Repository": "https://github.com/cloudmesh/cloudmesh-bumpversion.git"
},
"split_keywords": [
"helper library",
"cloudmesh"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e817a7339d4d5ef2f94d0abc7e189cd02ac7d9e691ebd395fccb9118c342592a",
"md5": "9f3c1c62d7268425b371065306f46c24",
"sha256": "e8ad50acf6848e4167b74910be441e12a18954e55a5fe2aca2ae708e638da273"
},
"downloads": -1,
"filename": "cloudmesh_bumpversion-5.0.29-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9f3c1c62d7268425b371065306f46c24",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.8",
"size": 8023,
"upload_time": "2023-12-26T20:45:42",
"upload_time_iso_8601": "2023-12-26T20:45:42.449458Z",
"url": "https://files.pythonhosted.org/packages/e8/17/a7339d4d5ef2f94d0abc7e189cd02ac7d9e691ebd395fccb9118c342592a/cloudmesh_bumpversion-5.0.29-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd20b9e904cf9a6f2154b8d410b999e7e4254f7a6600f72deef10ca3862d4cdf",
"md5": "b707ced0677418a75a436dd641fa985a",
"sha256": "e35b72dc34c050ac36b2d69648ebc6438ae57ffc9334f3b4d4e78247db9c01d0"
},
"downloads": -1,
"filename": "cloudmesh-bumpversion-5.0.29.tar.gz",
"has_sig": false,
"md5_digest": "b707ced0677418a75a436dd641fa985a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 9595,
"upload_time": "2023-12-26T20:45:46",
"upload_time_iso_8601": "2023-12-26T20:45:46.530509Z",
"url": "https://files.pythonhosted.org/packages/bd/20/b9e904cf9a6f2154b8d410b999e7e4254f7a6600f72deef10ca3862d4cdf/cloudmesh-bumpversion-5.0.29.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-12-26 20:45:46",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "cloudmesh",
"github_project": "cloudmesh-bumpversion",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"tox": true,
"lcname": "cloudmesh-bumpversion"
}