From 7f2e3e5ec451e30b116facaca3af865708203027 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Sun, 2 Mar 2014 00:07:54 -0500 Subject: [PATCH] Release 1.1.0 --- README.rst | 14 +++++++++++++- cargo-lite | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index c7b717e..21b49e3 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ================= -cargo-lite v1.0.0 +cargo-lite v1.1.0 ================= ``cargo-lite`` is an interim package manager for Rust that is sloppily @@ -32,6 +32,12 @@ Getting Help You can find me on ``irc.mozilla.org`` as ``cmr``. Look for me ``#rust-gamedev``. +Contributing +------------ + +Feel free to open issues or send pull requests. Pull requests should be +against the ``dev`` branch. + ========================= How To Use ``cargo-lite`` ========================= @@ -171,3 +177,9 @@ Non-goals - rustc integration beyond what is already present (no hooking into libsyntax etc) - rust rewrite, or a rewrite into any other language + +To-do +----- + +- Allow passing arbitrary rustc args +- Tests diff --git a/cargo-lite b/cargo-lite index d303fab..abd0117 100755 --- a/cargo-lite +++ b/cargo-lite @@ -51,7 +51,7 @@ from colorama import init, Fore # its strength advantage over md5. from pyblake2 import blake2b as blake2 -VERSION = "cargo-lite 1.0.0" +VERSION = "cargo-lite 1.1.0" tempdirs = [] init() diff --git a/setup.py b/setup.py index bd45df0..ba346b8 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name='cargo-lite', - version='1.0.0', + version='1.1.0', description='Rust package manager', author='Corey Richardson', author_email='corey@octayn.net',