Skip to content

Commit 2d3cfeb

Browse files
committed
v1.0.0, SSH private key. Update docs on push.
Added private SSH key for publishing docs to gh-pages. Updated .travis.yml to have docs updated on every push. Bumping version to 1.0.0.
1 parent 1dac981 commit 2d3cfeb

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ before_script:
1111
script: tox -e lint,py35,py34,py33,pypy,py27,docs
1212
after_success:
1313
- coveralls
14+
- touch docs/key; chmod 600 docs/key # Secure before storing key data.
15+
- openssl aes-256-cbc -K $encrypted_9c2bf3fbb9ea_key -iv $encrypted_9c2bf3fbb9ea_iv -in docs/key.enc -out docs/key -d
16+
- eval `ssh-agent -s`; ssh-add docs/key
17+
- git config --global user.email "[email protected]"
18+
- git config --global user.name "Travis CI"
19+
- git remote set-url origin "[email protected]:$TRAVIS_REPO_SLUG"
20+
- export ${!TRAVIS*} # For commit messages.
21+
- tox -e docsV
1422

1523
# Deploy.
1624
deploy:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Changelog
4242

4343
This project adheres to `Semantic Versioning <http://semver.org/>`_.
4444

45-
0.0.1 - 2016-06-12
45+
1.0.0 - 2016-07-23
4646
------------------
4747

4848
* Initial release.

docs/key.enc

3.17 KB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from setuptools import setup
1010

1111
NAME = 'sphinxcontrib-versioning'
12-
VERSION = '0.0.1'
12+
VERSION = '1.0.0'
1313

1414

1515
def readme():

sphinxcontrib/versioning/__init__.py

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

88
__author__ = '@Robpol86'
99
__license__ = 'MIT'
10-
__version__ = '0.0.1'
10+
__version__ = '1.0.0'

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author = @Robpol86
33
license = MIT
44
name = sphinxcontrib
5-
version = 0.0.1
5+
version = 1.0.0
66

77
[tox]
88
envlist = lint,py{34,27}

0 commit comments

Comments
 (0)