This repository was archived by the owner on Jun 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.3.0] [ ] - 2019-08-17
10
+
11
+ ### Changed
12
+ - Changed package name to ` backwork-upload-softlayer `
13
+
9
14
## [ 0.2.0] [ ] - 2018-04-05
10
15
### 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
12
17
default.
13
18
14
19
## [ 0.1.5] [ ] - 2017-06-11
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = "backwork-upload-softlayer" ,
15
- version = "0.2 .0" ,
15
+ version = "0.3 .0" ,
16
16
description = "Backwork plug-in for Softlayer uploads." ,
17
17
long_description = LONG_DESCRIPTION ,
18
18
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments