{
"info": {
"author": "CJ Harries",
"author_email": "cj@wizardsoftheweb.pro",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: Software Development :: Version Control :: Git"
],
"description": "``gitflow-easyrelease``\n~~~~~~~~~~~~~~~~~~~~~~~\n\n.. image:: https://badge.fury.io/py/gitflow-easyrelease.svg\n :target: https://badge.fury.io/py/gitflow-easyrelease\n\n.. image:: https://travis-ci.org/wizardsoftheweb/gitflow-easyrelease.svg?branch=master\n :target: https://travis-ci.org/wizardsoftheweb/gitflow-easyrelease\n\n.. image:: https://coveralls.io/repos/github/wizardsoftheweb/gitflow-easyrelease/badge.svg?branch=master\n :target: https://coveralls.io/github/wizardsoftheweb/gitflow-easyrelease?branch=master\n\n``gitflow-easyrelease`` aims to streamline ``git flow release`` commands. It adds some `semver `__ shortcuts as well.\n\n.. contents::\n\nInstallation\n============\n\n.. code:: shell-session\n\n $ pip install --user gitflow-easyrelease\n\nUsage\n=====\n\n.. code:: shell-session\n\n $ export PATH=~/.local/bin:$PATH\n $ which git-easyrelease\n ~/.local/bin/git-easyrelease\n $ git easyrelease\n < should print the main help >\n $ git easyrelease --all-help\n < dumps all the help >\n\nPositionals\n===========\n\n``version``\n-----------\n\n``version`` can be one of the following:\n\n* ``p``, ``patch``, or ``~`` for a patch bump\n* ``m``, ``minor``, or ``^`` for a minor bump\n* ``M`` or ``major`` for a major bump\n* ``X.Y.Z`` for a new, unconnected semver version\n* ```` for a not semver version\n\n``base``\n--------\n\n``base`` is an optional branch to use as the base for the release. It requires |gitflow_avh|_, but it's totally optional and shouldn't break anything if you both don't have ``gitflow-avh`` and never use ``base``.\n\n.. |gitflow_avh| replace:: the extended ``gitflow-avh``\n.. _gitflow_avh: https://github.com/petervanderdoes/gitflow-avh\n\nCommands\n========\n\n``init``\n--------\n\n``git easyrelease init [base]``\n\nConvenience method to seed the release with ``0.0.0``. It runs\n\n.. code:: shell-session\n\n $ git flow release start 0.0.0 \n $ git flow release finish\n\n\n``quick``\n---------\n\n``git easyrelease quick version [base]``\n\nConvenience method to start and finish a release branch. It runs\n\n.. code:: shell-session\n\n $ git flow release start \n $ git flow release finish\n\n\n``start``\n---------\n\n``git easyrelease start version [base]``\n\nExtends ``git flow release start`` with extra semver functionality. It runs\n\n.. code:: shell-session\n\n $ git flow release start \n\n\n``finish``\n----------\n\n``git easyrelease finish [version]``\n\nExtends ``git flow release finish`` with extra semver functionality. Without ``version``, it attempts to ``finish`` the active branch. It runs\n\n.. code:: shell-session\n\n $ git flow release finish \n\n\n``publish``\n-----------\n\n``git easyrelease publish [version]``\n\nExtends ``git flow release publish`` with extra semver functionality. Without ``version``, it attempts to ``publish`` the active branch. It runs\n\n.. code:: shell-session\n\n $ git flow release publish \n\n\n``delete``\n----------\n\n``git easyrelease delete [version]``\n\nExtends ``git flow release delete`` with extra semver functionality. Without ``version``, it attempts to ``delete`` the active branch. It runs\n\n.. code:: shell-session\n\n $ git flow release delete \n\n\nRoadmap\n=======\n\nThese percentages are pretty arbitrary. Today's 47% could be tomorrow's 90% or vice versa.\n\nMain Features\n-------------\n\nOnce all of these are finished, I'll release `v1`. Until then, `v0` should be used with caution, because it's not stable.\n\n.. csv-table::\n :header: \"Progress\", \"Feature\"\n\n \"100%\", \"Testing ``v0.2.0``\"\n\nEventual Features\n-----------------\n\nThese are things I'd like to add, but probably won't be included in `v1`. If not, they'll most likely constitute one or more minor version increments.\n\n.. csv-table::\n :header: \"Progress\", \"Feature\"\n\n \"10%\", \"``git config`` integration (or, rather, ``gitflow`` config integration\"\n \"0%\", \"Disable ``base`` without ``gitflow-avh``\"\n\nCopyright 2018 CJ Harries\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n\n",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/wizardsoftheweb/gitflow-easyrelease#readme",
"keywords": "git,gitflow,gitflow-avh",
"license": "ISC",
"maintainer": "",
"maintainer_email": "",
"name": "gitflow-easyrelease",
"package_url": "https://pypi.org/project/gitflow-easyrelease/",
"platform": "",
"project_url": "https://pypi.org/project/gitflow-easyrelease/",
"project_urls": {
"Homepage": "https://github.com/wizardsoftheweb/gitflow-easyrelease#readme",
"Issue Tracker": "https://github.com/wizardsoftheweb/gitflow-easyrelease/issues"
},
"release_url": "https://pypi.org/project/gitflow-easyrelease/0.3.2/",
"requires_dist": [
"argparse-color-formatter",
"ansicolors",
"pytest-runner"
],
"requires_python": "",
"summary": "Shortcuts for git flow release with semver support",
"version": "0.3.2"
},
"last_serial": 3659274,
"releases": {
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "63aae2ce93f2d98660718978c7e75eba",
"sha256": "e996a525206fa94b0f6d0bb83f4c8df66f6e6b5dfef9d4931f9ba2cda09a8437"
},
"downloads": -1,
"filename": "gitflow_easyrelease-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "63aae2ce93f2d98660718978c7e75eba",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 10128,
"upload_time": "2018-03-11T13:53:14",
"url": "https://files.pythonhosted.org/packages/6f/ee/4ba1aa6a1808e943cca1761e57a114060fc83872f6c0258520cf2c6f63d8/gitflow_easyrelease-0.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0973c788902a01927b2d9c38b69572d5",
"sha256": "3c79fc7c951250b1caaa1e75355747132c6003cf5a8ff6d13b6d9fc22db84d0f"
},
"downloads": -1,
"filename": "gitflow-easyrelease-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "0973c788902a01927b2d9c38b69572d5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7625,
"upload_time": "2018-03-11T13:53:01",
"url": "https://files.pythonhosted.org/packages/af/d3/cbb662b8786724f589eee1e0dc2c3da8ebe0f57fc395d253c10693f60bad/gitflow-easyrelease-0.2.0.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "146aeb62ccb5f4fd9566416c815d0d2a",
"sha256": "7d1cb926f96c44f5528c052b317c2680dd0189ae9e49c5dea9341845ee42a410"
},
"downloads": -1,
"filename": "gitflow_easyrelease-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "146aeb62ccb5f4fd9566416c815d0d2a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13148,
"upload_time": "2018-03-11T15:33:08",
"url": "https://files.pythonhosted.org/packages/01/76/3e8e6e596c3934af7c6ba7fc0894b4fa635d92cd04bf5e8e1a1beeb959c3/gitflow_easyrelease-0.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "297b6427d5bfbd8e53c826368382fa54",
"sha256": "340d72369497bc17e60f380b8e7151c6134d5f495bcc4fb80ace3bc98dcbeb2c"
},
"downloads": -1,
"filename": "gitflow-easyrelease-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "297b6427d5bfbd8e53c826368382fa54",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8853,
"upload_time": "2018-03-11T15:32:43",
"url": "https://files.pythonhosted.org/packages/e1/c2/9123abf1b45563f1d68fa0e54ceb6246db83adf0d7321a1efd15fb1202e3/gitflow-easyrelease-0.3.0.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "2ddc7425bfa698bee1116efcf7a00540",
"sha256": "bd2e8dac1e92684833651bf32ef02e8bdbc0404cb22eeb93077fd34cebd80ad9"
},
"downloads": -1,
"filename": "gitflow_easyrelease-0.3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2ddc7425bfa698bee1116efcf7a00540",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13151,
"upload_time": "2018-03-11T15:45:20",
"url": "https://files.pythonhosted.org/packages/f4/8a/ae350f194564b6b44c175eaec8283345258608a404e8c75e85cff6768e1b/gitflow_easyrelease-0.3.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9275db35dfcb7836fc6814c38700b458",
"sha256": "0b425402d79370b5d21d17e4f473a1ea4f727f3d250b245c81f6f8f90092c578"
},
"downloads": -1,
"filename": "gitflow-easyrelease-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "9275db35dfcb7836fc6814c38700b458",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14225,
"upload_time": "2018-03-11T15:45:15",
"url": "https://files.pythonhosted.org/packages/44/db/536cd1cfcf764c96b0a644ff021f643135f6b8086928ebeecf728922cdf3/gitflow-easyrelease-0.3.1.tar.gz"
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "2f95216ba133e99d2227a32d3b3378d2",
"sha256": "e5ee8ac82265124153972c75790fabfc234dc8e9556f42e238ab3971681d0df4"
},
"downloads": -1,
"filename": "gitflow_easyrelease-0.3.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "2f95216ba133e99d2227a32d3b3378d2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13017,
"upload_time": "2018-03-11T16:48:48",
"url": "https://files.pythonhosted.org/packages/c8/9a/50222072c7bab83848fb5c9dc3ac2ae1d7f52d5f7449c5bf25c44796fcae/gitflow_easyrelease-0.3.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e33b4446bed1c63773bf331d8af5f82b",
"sha256": "ac713fd8b27e3284865cad1855e0ba4e6e4f0479319b405c4fd0237c7fd1e99c"
},
"downloads": -1,
"filename": "gitflow-easyrelease-0.3.2.tar.gz",
"has_sig": true,
"md5_digest": "e33b4446bed1c63773bf331d8af5f82b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14243,
"upload_time": "2018-03-11T16:48:49",
"url": "https://files.pythonhosted.org/packages/67/fd/7c21c123ca1f706b382bf688f08ff1c8c08b64f591c1e4ab406db4c870ae/gitflow-easyrelease-0.3.2.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "2f95216ba133e99d2227a32d3b3378d2",
"sha256": "e5ee8ac82265124153972c75790fabfc234dc8e9556f42e238ab3971681d0df4"
},
"downloads": -1,
"filename": "gitflow_easyrelease-0.3.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "2f95216ba133e99d2227a32d3b3378d2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13017,
"upload_time": "2018-03-11T16:48:48",
"url": "https://files.pythonhosted.org/packages/c8/9a/50222072c7bab83848fb5c9dc3ac2ae1d7f52d5f7449c5bf25c44796fcae/gitflow_easyrelease-0.3.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e33b4446bed1c63773bf331d8af5f82b",
"sha256": "ac713fd8b27e3284865cad1855e0ba4e6e4f0479319b405c4fd0237c7fd1e99c"
},
"downloads": -1,
"filename": "gitflow-easyrelease-0.3.2.tar.gz",
"has_sig": true,
"md5_digest": "e33b4446bed1c63773bf331d8af5f82b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14243,
"upload_time": "2018-03-11T16:48:49",
"url": "https://files.pythonhosted.org/packages/67/fd/7c21c123ca1f706b382bf688f08ff1c8c08b64f591c1e4ab406db4c870ae/gitflow-easyrelease-0.3.2.tar.gz"
}
]
}