Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reevejd committed Aug 17, 2019
1 parent e3927ae commit b5d8297
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 22 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b5d8297

Please sign in to comment.