Skip to content

Commit

Permalink
Merge pull request #2 from sprockets/release-it
Browse files Browse the repository at this point in the history
Release it
  • Loading branch information
djt5019 committed Jun 9, 2015
2 parents 2e553eb + 1c48417 commit 1ac1bc0
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
24 changes: 16 additions & 8 deletions .travis.yml
@@ -1,14 +1,22 @@
%YAML 1.1
---
language: python
python:
- 2.7
- pypy
- 3.4
- 2.7
- pypy
- 3.4
before_install:
- pip install nose coverage codecov
- pip install nose coverage codecov
install:
- pip install -e .
- pip install -e .
script: nosetests
after_success:
- codecov
- codecov
deploy:
distributions: sdist bdist_wheel
provider: pypi
user: sprockets
password:
secure: hLpyNQOIO8yvvltkQUjMQrTE63E08fDCN4b4wdBEhLwbP7TLJmY2UllXtZyk8uahc0YcvFOin+ykhv4c/22AnuwCqkFaGVM6UjkNPzs3iYQF0P/soygoj+89FvsGq5ew/pk8/Dz1dkNjoDINT99DegRCW/sGNkc31kWIx2p4iefHQf/LRKezkVMzscSFihEWlOViQQX/6QJpNmJ7KpMGSPPajRX6gSkvhMVfVk1A4EVH7EzDJKE1q7YI5JA8bqAa3U3VQMv4rvptCt3+6SuZqh5BPj0cgvCz62Ng9hyQy5p0+/sBLg3IO9YDkGEde8YS4vzcy01IQaGS4MlSegdQrllkF9FEvj7ywC49d2qrn4+qFsqZe61VkG2C/JxnAbyuHCMqXKeYC74unoC+qP2+7edHMDXH8grLZSR05u6MUFlf1olnvh+lz0WGyLcf10rf2zPb8dIaHMokbsbALPbk5KjGIcGsc1vso2WzUFBs0Ik5bKpDmggOBCYGUS+BFL+vcXGDX8PeoYsPjLMrCnsHc975sEjvCUZtmpCjDG6fYeddhVgLfbRUGGXvz9cVDVHCXgpL9/6EqlD/8GqUQyzKCXPWYiqPVRnPLUTAorJPPiK4utuWeqc34s/InIC8KTtiyelroR87S0e3N7z5aeXxtwdAR5yFvjx7o3ewgSNWwlU=
on:
python: 3.4
tags: true
all_branches: true
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -3,5 +3,6 @@ include README.rst
include HISTORY.rst
include tests.py
graft docs
graft examples
global-exclude __pycache__
global-exclude *.pyc
6 changes: 4 additions & 2 deletions docs/history.rst
@@ -1,6 +1,8 @@
Version History
===============

Next Release
------------
`1.0.0`_ Jun 09, 2015
---------------------
- Added :class:`sprockets.logging.ContextFilter`

.. _1.0.0: https://github.com/sprockets/sprockets.logging/compare/0.0.0...1.0.0
2 changes: 1 addition & 1 deletion sprockets/logging.py
Expand Up @@ -9,7 +9,7 @@
import logging


version_info = (0, 0, 0)
version_info = (1, 0, 0)
__version__ = '.'.join(str(v) for v in version_info)


Expand Down

0 comments on commit 1ac1bc0

Please sign in to comment.