Skip to content

Commit

Permalink
Merge pull request #97 from jacebrowning/v0.7
Browse files Browse the repository at this point in the history
Release v0.7
  • Loading branch information
jacebrowning committed Jul 8, 2014
2 parents cf12cd2 + a749913 commit b9836a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 23 deletions.
29 changes: 8 additions & 21 deletions CHANGES.md
@@ -1,8 +1,8 @@
Changelog
=========

0.7 (dev)
---------
0.7 (2014/07/08)
----------------

- Added `doorstop delete ...` to delete document directories.
- Added `doorstop export ...` to export content for external tools.
Expand All @@ -16,8 +16,8 @@ Changelog
- Renamed `doorstop new ...` to `doorstop create ...`.
- Made 'all' a reserved word, which cannot be used as a prefix.

0.6 (2014/5/15)
---------------
0.6 (2014/05/15)
----------------

- Refactored Item levels into a Level class
- Refactored Item identifiers into an ID class
Expand All @@ -40,22 +40,9 @@ Changelog
- Added '--level' option to 'doorstop add' to force an Item level
- Added warnings for duplicate Item levels in a Document
- Added warnings for skipped Item levels in a Document
- Renamed Item methods:
+ add_link -> link
+ remove_link -> unlink
+ valid -> validate
- Renamed Document methods:
+ add -> add_item
+ remove -> remove_item
+ valid -> validate
- Renamed Tree methods:
+ new -> new_document
+ add -> add_item
+ remove -> remove_item
+ link -> link_items
+ unlink -> unlink_items
+ edit -> edit_item
+ valid -> validate
- Renamed Item methods: add_link -> link, remove_link -> unlink, valid -> validate
- Renamed Document methods: add -> add_item, remove -> remove_item, valid -> validate
- Renamed Tree methods: new -> new_document, add -> add_item, remove -> remove_item, link -> link_items, unlink -> unlink_items, edit -> edit_item, valid -> validate
- Added doorstop.importer functions to add exiting Documents and Items

0.4.3 (2014/03/18)
Expand Down Expand Up @@ -148,7 +135,7 @@ Changelog


0.0.14 (2014/01/27)
--------------------
-------------------

- Added Tree/Document/Item.iter_issues() method to yield all issues
- Tree/Document/Item.check() now logs all issues rather than failing fast
Expand Down
2 changes: 1 addition & 1 deletion doorstop/__init__.py
@@ -1,7 +1,7 @@
"""Package for doorstop."""

__project__ = 'Doorstop'
__version__ = '0.7-dev'
__version__ = '0.7'

CLI = 'doorstop'
GUI = 'doorstop-gui'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -20,7 +20,7 @@
version=__version__,

description=DESCRIPTION,
url='http://github.com/jacebrowning/doorstop',
url='http://doorstop.info',
author='Jace Browning',
author_email='jacebrowning@gmail.com',

Expand Down

0 comments on commit b9836a3

Please sign in to comment.