diff --git a/CHANGES.md b/CHANGES.md index 3c5eae7a..77767fe6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,7 @@ Changelog ========= -0.1 (dev) ---------- +0.1 (2014/02/24) +---------------- - - Initial version. + - Initial release. diff --git a/README.md b/README.md index 738253dc..a73c4935 100644 --- a/README.md +++ b/README.md @@ -31,18 +31,44 @@ $ cd gdm $ python3 setup.py install ``` +Setup +----- + +Create a GDM configuration file in the root of your working tree: + +```yaml +location: .gdm +sources: +- repo: https://github.com/kstenerud/iOS-Universal-Framework + dir: framework + rev: Mk5-end-of-life + link: Frameworks/iOS-Universal-Framework +- repo: https://github.com/jonreid/XcodeCoverage + dir: coverage + rev: master + link: Tools/XcodeCoverage +``` + +Ignore the source location: + +``` +$ echo .gdm >> .gitignore +``` + Basic Usage =========== -After installation: +Get the specified versions of all dependencies: ``` -$ python3 ->>> import gdm ->>> gdm.__version__ +$ gdm install ``` -GDM doesn't do anything yet. +Remove all installed dependencies: + +``` +$ gdm uninstall +``` For Contributors ================ diff --git a/gdm/__init__.py b/gdm/__init__.py index dd95b61a..beee297e 100644 --- a/gdm/__init__.py +++ b/gdm/__init__.py @@ -3,7 +3,7 @@ import sys __project__ = 'GDM' -__version__ = '0.1a4' +__version__ = '0.1' CLI = 'gdm' VERSION = __project__ + '-' + __version__