Skip to content

Commit

Permalink
Bump version number to 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Feb 24, 2015
1 parent 4b3c0dd commit 0fc0b5a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.1 (dev)
---------
0.1 (2014/02/24)
----------------

- Initial version.
- Initial release.
36 changes: 31 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
================
Expand Down
2 changes: 1 addition & 1 deletion gdm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys

__project__ = 'GDM'
__version__ = '0.1a4'
__version__ = '0.1'

CLI = 'gdm'
VERSION = __project__ + '-' + __version__
Expand Down

0 comments on commit 0fc0b5a

Please sign in to comment.