Skip to content

Commit

Permalink
Version 0.9.1 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith authored May 12, 2017
1 parent 9fbedce commit 37ecf5e
Show file tree
Hide file tree
Showing 19 changed files with 435 additions and 492 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Version 0.9.1
-------------

- Fixing local imports not working when installed

Version 0.9.0
-------------

Expand Down
25 changes: 14 additions & 11 deletions reusables/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,19 @@
#
# Copyright (c) 2014-2017 - Chris Griffith - MIT License
from __future__ import absolute_import
from .namespace import *
from .dt import *
from .log import *
from .wrappers import *
from .web import *
from .shared_variables import *
from .cli import *
from .file_operations import *
from .processes import *
from .string_manipulation import *

from reusables.string_manipulation import *
from reusables.cli import *
from reusables.dt import *
from reusables.file_operations import *
from reusables.log import *
from reusables.namespace import *
from reusables.tasker import *
from reusables.process_helpers import *
from reusables.shared_variables import *
from reusables.tasker import *
from reusables.web import *
from reusables.wrappers import *

__author__ = "Chris Griffith"
__version__ = "0.9.0"
__version__ = "0.9.1"
11 changes: 6 additions & 5 deletions reusables/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
#
# Copyright (c) 2014-2017 - Chris Griffith - MIT License
""" Functions to only be in an interactive instances to ease life. """
from __future__ import absolute_import
import os
import logging
import shutil
from collections import deque

from .shared_variables import *
from .processes import run
from .shared_variables import win_based
from .file_operations import find_files_list
from .log import add_stream_handler
from reusables.shared_variables import *
from reusables.process_helpers import run
from reusables.shared_variables import win_based
from reusables.file_operations import find_files_list
from reusables.log import add_stream_handler

__all__ = ['cmd', 'pushd', 'popd', 'pwd', 'cd', 'ls',
'find', 'head', 'cat', 'tail', 'cp']
Expand Down
3 changes: 2 additions & 1 deletion reusables/dt.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
# Part of the Reusables package.
#
# Copyright (c) 2014-2017 - Chris Griffith - MIT License
from __future__ import absolute_import
import datetime
import re

from .namespace import Namespace
from reusables.namespace import Namespace

__all__ = ['dt_exps', 'datetime_regex', 'now', 'datetime_format',
'datetime_from_iso', 'dtf', 'dtiso']
Expand Down
Loading

0 comments on commit 37ecf5e

Please sign in to comment.