diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 95a07ca8..ce515c50 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,8 @@ prjct Changelog =============== +- :feature:`-` ``todo`` command line shortcut installed with ``prjct`` that + links to ``topydo`` - :bug:`-` [BREAKING CHANGE] switch from ``appdirs`` to ``xdg`` to determine folder in which to store configuration. This is done so it's easier to find the configuration folder to back it up. Run ``prjct config`` to generate the diff --git a/prjct/__init__.py b/prjct/__init__.py index 2989a251..95a41fd8 100644 --- a/prjct/__init__.py +++ b/prjct/__init__.py @@ -7,11 +7,11 @@ __title__ = 'prjct' __tagline__ = 'Project Management for Living Life' -__version__ = "0.6.1-dev.20171128.0" +__version__ = "0.7.0-dev20180103" __author__ = 'William Minchin' __email__ = 'w_minchin@hotmail.com' __license__ = 'MIT License' -__copyright__ = 'Copyright 2013-17 William Minchin' +__copyright__ = 'Copyright 2013-18 William Minchin' __url__ = 'https://github.com/MinchinWeb/prjct' # import submodules diff --git a/setup.py b/setup.py index c8f58288..f248e88d 100644 --- a/setup.py +++ b/setup.py @@ -184,8 +184,9 @@ def read_requirements(*parts): # ], entry_points={ 'console_scripts': [ - 'prjct=prjct.cli:main', + 'prjct = prjct.cli:main', 'jrnl = prjct._vendor.jrnl.cli:run', + 'todo = topydo.ui.UILoader:main', # probably move to separate package for v1 release ], }, )