Skip to content

Commit

Permalink
cleaning up version strings
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmoggach committed Mar 7, 2012
1 parent 56dc9c7 commit c34f95c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions README.rst
Expand Up @@ -67,14 +67,14 @@ Currently we need to implement the following:
-modular exceptions
-better documentation

Forking through Bitbucket
~~~~~~~~~~~~~~~~~~~~~~~~~
Forking through GitHub
~~~~~~~~~~~~~~~~~~~~~~

First of all, you need to fork from the official repository, which is
`https://github.com/dshng/python-dirtt <https://github.com/dshng/python-dirtt>`_.

Log in to Bitbucket, go to the dirtt repository page, follow the fork link,
wait for Bitbucket to copy the repository and then clone your fork, like:
Log in to GitHub, go to the dirtt repository page, follow the fork link,
wait for GitHub to copy the repository and then clone your fork, like:

``git clone https://github.com/YOUR_USER_NAME/python-dirtt``

Expand Down Expand Up @@ -117,7 +117,7 @@ Try it out in a python-virtualenv environment to play around and it should make

If you want to install to a custom location here's how I do it:

``pip install --install-option="--install-dir=/dashing/tools/lib/python2.7/site-packages" -e git+git@bitbucket.org:mogga/python-dirtt.git#egg=python-dirtt``
``pip install --install-option="--install-dir=/dashing/tools/lib/python2.7/site-packages" -e git+git@github.com:dshng/python-dirtt.git#egg=python-dirtt``

That will download and do the package build as necessary.

Expand Down Expand Up @@ -221,5 +221,5 @@ Links

Here's the links:

`Bitbucket <https://github.com/dshng/python-dirtt>`_
`GitHub <https://github.com/dshng/python-dirtt>`_

4 changes: 2 additions & 2 deletions dirtt/__init__.py
Expand Up @@ -13,8 +13,8 @@
user defined XML directory tree templates.
"""

#v0.1.9b1
VERSION = (0, 1, 9, 'beta', 1)
#v0.1.9b2
VERSION = (0, 1, 9, 'beta', 2)

STATUSES = {'alpha': 'a', 'beta': 'b', 'releasecandidate': 'rc' }

Expand Down
8 changes: 4 additions & 4 deletions docs/_build/html/news.html
Expand Up @@ -12,7 +12,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '0.1.3',
VERSION: '0.1.9b2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
Expand All @@ -21,7 +21,7 @@
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="underscore.js"></script>
<script type="text/javascript" src="doctools.js"></script>
<link rel="top" title="python-dirtt v0.1.3 documentation" href="index.html" />
<link rel="top" title="python-dirtt v0.1.9b2 documentation" href="index.html" />
<link rel="prev" title="python-dirtt - Directory Tree Templater" href="index.html" />
</head>
<body>
Expand All @@ -34,7 +34,7 @@ <h3>Navigation</h3>
<li class="right" >
<a href="index.html" title="python-dirtt - Directory Tree Templater"
accesskey="P">previous</a> |</li>
<li><a href="index.html">python-dirtt v0.1.3 documentation</a> &raquo;</li>
<li><a href="index.html">python-dirtt v0.1.9b2 documentation</a> &raquo;</li>
</ul>
</div>

Expand Down Expand Up @@ -125,7 +125,7 @@ <h3>Navigation</h3>
<li class="right" >
<a href="index.html" title="python-dirtt - Directory Tree Templater"
>previous</a> |</li>
<li><a href="index.html">python-dirtt v0.1.3 documentation</a> &raquo;</li>
<li><a href="index.html">python-dirtt v0.1.9b2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
Expand Down
6 changes: 3 additions & 3 deletions docs/_build/html/search.html
Expand Up @@ -12,7 +12,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '0.1.3',
VERSION: '0.1.9b2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
Expand All @@ -36,7 +36,7 @@ <h3>Navigation</h3>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li><a href="index.html">python-dirtt v0.1.3 documentation</a> &raquo;</li>
<li><a href="index.html">python-dirtt v0.1.9b2 documentation</a> &raquo;</li>
</ul>
</div>

Expand Down Expand Up @@ -84,7 +84,7 @@ <h3>Navigation</h3>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li><a href="index.html">python-dirtt v0.1.3 documentation</a> &raquo;</li>
<li><a href="index.html">python-dirtt v0.1.9b2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
Expand Down
10 changes: 5 additions & 5 deletions docs/index.rst
Expand Up @@ -69,14 +69,14 @@ Currently we need to implement the following:
-modular exceptions
-better documentation

Forking through Bitbucket
Forking through GitHub
~~~~~~~~~~~~~~~~~~~~~~~~~

First of all, you need to fork from the official repository, which is
`https://github.com/dshng/python-dirtt <https://github.com/dshng/python-dirtt>`_.

Log in to Bitbucket, go to the dirtt repository page, follow the fork link,
wait for Bitbucket to copy the repository and then clone your fork, like:
Log in to GitHub, go to the dirtt repository page, follow the fork link,
wait for GitHub to copy the repository and then clone your fork, like:

``git clone https://github.com/YOUR_USER_NAME/python-dirtt``

Expand Down Expand Up @@ -120,7 +120,7 @@ Try it out in a python-virtualenv environment to play around and it should make

If you want to install to a custom location here's how I do it:

``pip install --install-option="--install-dir=/dashing/tools/lib/python2.7/site-packages" -e git+git@bitbucket.org:mogga/python-dirtt.git#egg=python-dirtt``
``pip install --install-option="--install-dir=/dashing/tools/lib/python2.7/site-packages" -e git+git@github.com:dshng/python-dirtt.git#egg=python-dirtt``

That will download and do the package build as necessary.

Expand Down Expand Up @@ -224,5 +224,5 @@ Links

Here's the links:

`Bitbucket <https://github.com/dshng/python-dirtt>`_
`GitHub <https://github.com/dshng/python-dirtt>`_

0 comments on commit c34f95c

Please sign in to comment.