Skip to content

Commit

Permalink
Merge pull request #110 from jacebrowning/release/v0.9
Browse files Browse the repository at this point in the history
Release v0.9
  • Loading branch information
jacebrowning committed Mar 31, 2016
2 parents 6e5a28c + 296752c commit c64c2d0
Show file tree
Hide file tree
Showing 32 changed files with 407 additions and 365 deletions.
25 changes: 16 additions & 9 deletions .gitignore
Expand Up @@ -9,17 +9,21 @@ __pycache__
# Temporary OS files
Icon*

# Temporary virtualenv files
# Temporary virtual environment files
.cache
env
/env

# Temporary server files
.env
*.pid

# Generated documentation
docs/gen
/docs/gen
/apidocs
/site
/*.html
*.rst
docs/*.png
/*.rst
/docs/*.png

# Google Drive
*.gdoc
Expand All @@ -28,14 +32,17 @@ docs/*.png
*.gdraw

# Testing and coverage results
.cache
.pytest
.coverage
htmlcov
pyunit.xml
.coverage.*
/htmlcov
/pyunit.xml
*.tmp

# Build and release directories
build
dist
/build
/dist

# Sublime Text
*.sublime-workspace
Expand Down
11 changes: 8 additions & 3 deletions .pep257
@@ -1,5 +1,10 @@
[pep257]

# D10*: docstring missing (checked by PyLint)
# D202: No blank lines allowed *after* function docstring (personal preference)
add-ignore = D102,D103,D105,D202
# D211: No blank lines allowed before class docstring
add_select = D211

# D102: Missing docstring in public method
# D103: Missing docstring in public function
# D105: Missing docstring in magic method
# D202: No blank lines allowed after function docstring
add_ignore = D102,D103,D105,D202
3 changes: 2 additions & 1 deletion .pep8rc
@@ -1,2 +1,3 @@
[pep8]
ignore = E501

ignore = E501,E712
110 changes: 0 additions & 110 deletions .project

This file was deleted.

8 changes: 0 additions & 8 deletions .pydevproject

This file was deleted.

2 changes: 1 addition & 1 deletion .pylintrc
@@ -1,6 +1,6 @@
[MESSAGES CONTROL]

disable=locally-disabled,fixme,too-few-public-methods,too-many-public-methods,invalid-name,global-statement,too-many-ancestors,misplaced-comparison-constant
disable=locally-disabled,fixme,too-few-public-methods,too-many-public-methods,invalid-name,global-statement,too-many-ancestors,misplaced-comparison-constant,missing-docstring

[FORMAT]

Expand Down
9 changes: 8 additions & 1 deletion CHANGES.md
@@ -1,6 +1,13 @@
Revision History
================

0.9 (2016/03/31)
----------------

- Added `edit` command to launch the configuration file.
- Depth now defaults to 5 to prevent infinite recursion.
- Fixed handling of source lists containing different dependencies.

0.8.3 (2016/03/14)
------------------

Expand All @@ -16,7 +23,7 @@ Revision History

- Added an error message when attempting to lock invalid repositories.

0.8 (2015/10/13)
0.8 (2016/01/13)
----------------

- Switched to using repository mirrors to speed up cloning.
Expand Down
41 changes: 0 additions & 41 deletions GDM.sublime-project

This file was deleted.

0 comments on commit c64c2d0

Please sign in to comment.