switch to dev version

This commit is contained in:
Dimitris Zlatanidis 2014-11-28 10:48:55 +02:00
parent 9175810a6c
commit 0142a5fc28
6 changed files with 13 additions and 9 deletions

View file

@ -1,10 +1,14 @@
Version 2.1.0-dev
[Updated] - Fix change build path.
- Fix creating directories if not exists.
Version 2.0.9 Version 2.0.9
26-11-2014 26-11-2014
[Updated] - Fix setup.py to install configuration files after checksum. [Updated] - Fix setup.py to install configuration files after checksum.
- Fix view slpkg config file. - Fix view slpkg config file.
Version 2.0.8 Version 2.0.8
25-11-2014 25-11-2014

View file

@ -1,6 +1,6 @@
Metadata-Version: 1.1 Metadata-Version: 1.1
Name: slpkg Name: slpkg
Version: 2.0.9 Version: 2.1.x-dev
Author: dslackw Author: dslackw
Author-email: d zlatanidis at gmail com Author-email: d zlatanidis at gmail com
Maintainer: dslackw Maintainer: dslackw

View file

@ -11,9 +11,9 @@
Latest Release: Latest Release:
- Version: 2.0.9 - Version: 2.1.x-dev
- `Package <https://sourceforge.net/projects/slpkg/files/slpkg/binary/>`_ - `Package <https://sourceforge.net/projects/slpkg/files/slpkg/binary/>`_
- `Source <https://github.com/dslackw/slpkg/archive/v2.0.9.tar.gz>`_ - `Source <https://github.com/dslackw/slpkg/archive/v2.1.x-dev.tar.gz>`_
- `CHANGELOG <https://github.com/dslackw/slpkg/blob/master/CHANGELOG>`_ - `CHANGELOG <https://github.com/dslackw/slpkg/blob/master/CHANGELOG>`_
.. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/logo.png .. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/logo.png
@ -112,8 +112,8 @@ Untar the archive and run install.sh script:
.. code-block:: bash .. code-block:: bash
$ tar xvf slpkg-2.0.9.tar.gz $ tar xvf slpkg-2.1.x-dev.tar.gz
$ cd slpkg-2.0.9 $ cd slpkg-2.1.x-dev
$ ./install.sh $ ./install.sh
From SourceForge: From SourceForge:

View file

@ -21,7 +21,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=slpkg PRGNAM=slpkg
VERSION=${VERSION:-2.0.9} VERSION=${VERSION:-2.1.x-dev}
TAG=${TAG:-_dsw} TAG=${TAG:-_dsw}
# Installation script. # Installation script.

View file

@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=slpkg PRGNAM=slpkg
VERSION=${VERSION:-2.0.9} VERSION=${VERSION:-2.1.x-dev}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_dsw} TAG=${TAG:-_dsw}

View file

@ -26,7 +26,7 @@ import os
__all__ = "slpkg" __all__ = "slpkg"
__author__ = "dslackw" __author__ = "dslackw"
__version_info__ = (2, 0, 9) __version_info__ = (2, 1, 'x-dev')
__version__ = "{0}.{1}.{2}".format(*__version_info__) __version__ = "{0}.{1}.{2}".format(*__version_info__)
__license__ = "GNU General Public License v3 (GPLv3)" __license__ = "GNU General Public License v3 (GPLv3)"
__email__ = "d.zlatanidis@gmail.com" __email__ = "d.zlatanidis@gmail.com"