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

Supported Functionalities

See current version

To see current version of files.

$ current_version

Current Version GIF

Update version

Any version can be set.

$ update_version 1.1.1

Update Version GIF

Next Version(Cooming Soon)

Simply upgrade to next version.

$ next_version

Previous Version(Cooming Soon)

Simply downgrade to previous version.

$ previous_version

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 :-)

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.5.1.tar.gz (6.9 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