diff --git a/CHANGELOG.md b/CHANGELOG.md index 21665ce..188c354 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] + +## [0.3.0][] - 2019-08-17 +### Added +- Added `restore` subcommand. + +## [0.2.0][] - 2019-08-14 +### Changed +- Changed package name to `backwork-backup-mongo` + ## [0.1.1][] - 2017-06-02 ### Added - Travis CI diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..338c14b --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,22 @@ +# Contributing + +## Development + +### Setup virtual environment +``` +$ virtualenv venv --python=python3 +$ source venv/bin/activate +``` + +### Install dependencies +``` +$ pip install -r requirements.txt +``` +### Install the plug-in in editable mode +``` +$ pip install -e . +``` + +## Releasing a new version +To publish a new PyPI release, update the version in [setup.py](setup.py) on the master branch +and create a new GitHub release. Travis will build and publish a new release on PyPI. diff --git a/setup.py b/setup.py index ab6ff41..d2c5d27 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="backwork-backup-mongo", - version="0.1.2", + version="0.3.0", description="Backwork plug-in for MongoDB backups.", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",