Skip to content

Commit 475057b

Browse files
committed
Add changelog, update deps, and adjust travis - increment version 0.0.4
1 parent 244386c commit 475057b

File tree

6 files changed

+68
-39
lines changed

6 files changed

+68
-39
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
password: $PYPI_PASSWORD
3232
distributions: "sdist bdist_wheel"
3333
skip_existing: true
34+
skip_cleanup: true
3435
on:
3536
tags: true
3637
- provider: releases

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Change Log
2+
3+
## [v0.0.3](https://github.com/mbeacom/cloudendure-python/tree/v0.0.3) (2019-06-20)
4+
[Full Changelog](https://github.com/mbeacom/cloudendure-python/compare/v0.0.2...v0.0.3)
5+
6+
**Implemented enhancements:**
7+
8+
- Update pip dependencies [\#3](https://github.com/mbeacom/cloudendure-python/pull/3) ([mbeacom](https://github.com/mbeacom))
9+
10+
**Merged pull requests:**
11+
12+
- Update README.md [\#4](https://github.com/mbeacom/cloudendure-python/pull/4) ([twarnock2w](https://github.com/twarnock2w))
13+
14+
## [v0.0.2](https://github.com/mbeacom/cloudendure-python/tree/v0.0.2) (2019-06-16)
15+
[Full Changelog](https://github.com/mbeacom/cloudendure-python/compare/v0.0.1...v0.0.2)
16+
17+
**Implemented enhancements:**
18+
19+
- Pointed API usecase and CLI additions [\#2](https://github.com/mbeacom/cloudendure-python/pull/2) ([mbeacom](https://github.com/mbeacom))
20+
21+
## [v0.0.1](https://github.com/mbeacom/cloudendure-python/tree/v0.0.1) (2019-05-30)
22+
23+
24+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

Pipfile.lock

Lines changed: 34 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# cloudendure-python
22

3-
Python wrapper and CLI for CloudEndure
3+
Python wrapper and CLI for [CloudEndure](https://www.cloudendure.com/)
44

55
[![Build Status](https://travis-ci.com/mbeacom/cloudendure-python.svg?branch=master)](https://travis-ci.com/mbeacom/cloudendure-python)
66

77
[Documentation](https://mbeacom.github.io/cloudendure-python/)
88

9-
Package version: `0.0.3`
9+
Package version: `0.0.4`
1010

1111
## Requirements
1212

@@ -95,3 +95,7 @@ Logging in for the first time will generate the `~/.cloudendure.yml` file.
9595
## Coming Soon
9696

9797
This project is currently a work in progress and will actively change. This client has not yet been finalized and is entirely subject to change.
98+
99+
## Changelog
100+
101+
Check out the [CHANGELOG](CHANGELOG.md)

pydocmd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pages:
2626
- General:
2727
- Home: index.md << README.md
2828
- References: references.md << REFERENCE.md
29+
- Changelog: changes.md << CHANGELOG.md
2930
- Code:
3031
- CloudEndure:
3132
- API: code/cloudendure/api.md

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
# Package meta-data.
2020
NAME: str = "cloudendure"
2121
DESCRIPTION: str = "CloudEndure Python Client and CLI"
22-
URL: str = "https://github.com/mbeacom/cloudendure-py"
22+
URL: str = "https://github.com/mbeacom/cloudendure-python"
2323
EMAIL: str = "[email protected]"
2424
AUTHOR: str = "Mark Beacom"
2525
REQUIRES_PYTHON: str = ">=3.6.0"
26-
VERSION: str = "0.0.3"
26+
VERSION: str = "0.0.4"
2727

2828
REQUIRED: List[str] = ["requests", "boto3"]
2929
EXTRAS: Dict[str, List[str]] = {

0 commit comments

Comments
 (0)