Skip to content
This repository was archived by the owner on Jun 17, 2024. It is now read-only.

Commit 24eb724

Browse files
committed
v0.3.0
1 parent c15ff32 commit 24eb724

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [0.3.0][] - 2019-08-17
10+
11+
### Changed
12+
- Changed package name to `backwork-upload-softlayer`
13+
914
## [0.2.0][] - 2018-04-05
1015
### Added
11-
- Added ability to upload via private Softlayer network. Made it the
16+
- Added ability to upload via private Softlayer network. Made it the
1217
default.
1318

1419
## [0.1.5][] - 2017-06-11

CONTRIBUTING.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Contributing
2+
3+
## Development
4+
5+
### Setup virtual environment
6+
```
7+
$ virtualenv venv --python=python3
8+
$ source venv/bin/activate
9+
```
10+
11+
### Install dependencies
12+
```
13+
$ pip install -r requirements.txt
14+
```
15+
### Install the plug-in in editable mode
16+
```
17+
$ pip install -e .
18+
```
19+
20+
## Releasing a new version
21+
To publish a new PyPI release, update the version in [setup.py](setup.py) on the master branch
22+
and create a new GitHub release. Travis will build and publish a new release on PyPI.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="backwork-upload-softlayer",
15-
version="0.2.0",
15+
version="0.3.0",
1616
description="Backwork plug-in for Softlayer uploads.",
1717
long_description=LONG_DESCRIPTION,
1818
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)