summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst13
-rw-r--r--docs/source/index.rst2
-rw-r--r--docs/source/xenant.rst2
-rw-r--r--xnt/version.py2
4 files changed, 15 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index aaca0ce..8533996 100644
--- a/README.rst
+++ b/README.rst
@@ -9,6 +9,17 @@ A wrapper build tool
Release Notes
=============
+0.6.3:2013-10-21
+----------------
+
+* Add target run tracking
+
+ * See issue#27
+
+* Update dependencies
+
+ * See issue#26
+
0.6.2:2013-06-26
----------------
@@ -168,7 +179,7 @@ Dependencies
There are a few required and optional dependencies to install and run
Xnt. Namely, reference the following list:
-* ``distribute``
+* ``setuptools``
* ``Ant`` (Optional)
* ``CVS`` (Optional)
* ``Git`` (Optional)
diff --git a/docs/source/index.rst b/docs/source/index.rst
index b159341..8254fbd 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -78,7 +78,7 @@ Dependencies
There are a few dependencies that Xnt requires and a few that are completely
optional, depending on your intended use.
-* ``distribute``
+* ``setuptools``
* ``Ant`` (Optional)
* ``CVS`` (Optional)
* ``Git`` (Optional)
diff --git a/docs/source/xenant.rst b/docs/source/xenant.rst
index 4ddfa56..1aab24a 100644
--- a/docs/source/xenant.rst
+++ b/docs/source/xenant.rst
@@ -40,7 +40,7 @@ Will execute `target1` through `targetN` in order of listing.
.. _otherCommands:
-Othes Commands
+Other Commands
--------------
Xnt has a number of other commands that can be invoked besides those defined in
diff --git a/xnt/version.py b/xnt/version.py
index ef23d89..f2d4b96 100644
--- a/xnt/version.py
+++ b/xnt/version.py
@@ -17,5 +17,5 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-__version_info__ = (0, 6, 3, 'dev')
+__version_info__ = (0, 6, 3)
__version__ = '.'.join(list(str(i) for i in __version_info__ if True))