Skip to main content

Version upgrader in all spesific files like setup.py, package.json, bower.json etc.

Project description

Built Status Coverage Status

This is a utility to manage versions in all necessary files in one place.(see,update, etc.)

Sometimes there are too many files in the project which contains project version. For example you would be having files such as bower.json and setup.py on same version in your project. Whenever the version is wanted be to upgraded, all files were updated one by one; now all implemented files can be update simply at once. It will find your versioning files and update them one by one.

This is installed into your python environment and the commands below can be access from command-line directly.

Requirements

  • Python 2.7 or pypy2

Installation

$ (sudo) pip install version-manager --upgrade

Supported Functionalities

Current Status

To see current version of files.

$ versionmanager --status

Current Status GIF

Set version

Any version can be set.

$ versionmanager --set 1.1.1

Set Version GIF

Bump Version

This is new functionality to upgrade version without knowing whole version string. It simply upgrade version as major, minor or patch as it is defined in SemVer.

$ versionmanager --bump major
$ versionmanager --bump minor
$ versionmanager --bump patch

Bump Patch Version GIF Bump Minor Version GIF Bump Major Version GIF

Built-In Supported Files

  • setup.py

  • bower.json

  • package.json

  • pom.xml

  • conf.py (sphinx documentation config)

Implement for Your Custom Files

Any file implementation can be added simply. version-manager reads extra config from .vmrc file under your current directory(project folder maybe) or your user home directory.

Here is a simple example of .vmrc

$ vi ~/.vmrc

or

$ vi /path/to/your_project/.vmrc
{
  files : [
              {
                    'name': 'my_custom_file.txt',
                    'parser': 'regexp',
                    'kwargs':{
                          'regex': '(?P<match_left>version=")(?P<version>\d+)(?P<match_right>")'
                    }
              },
              {
                    'name': 'my_custom_file.xml',
                    'parser': 'xml',
                    'kwargs':{
                          'xpaths': ['./ns:path1/ns:version'],
                          'namespaces':{'my_namespace':'my-name-space-uri'}
                    }
              }
        ]
}

Any famous file formats can be demanded as built-in by opening an issue. Feel free to demand it :-)

Change Logs

0.6.0(Stable)

  • Improvement - current_version and update_version are merged as subcomment under versionmanager consolescript. versionmanager --status, versionmanager --set <version> and versionmanager --bump <level> are available instead of current_version and update_version <version> .

  • Improvement - SemVer support is added for bump versioning. versionmanager --bump <level> which level is one among (major,``minor``,``patch``)

0.5.1

  • Improvement - pypy support is added.

  • Bug - When there is multiple regex config for same file, one of them was being applied. It is fixed. (version and relase in Sphinx conf.py)

0.5.0

  • Improvement - Sphinx conf.py support is added.

  • Improvement - README file is in rst format now.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

version-manager-0.6.0.tar.gz (7.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page