From 5116d858c498b70d295b36ad2de04dcdfd103f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= Date: Mon, 22 Feb 2010 09:30:31 +0000 Subject: [PATCH] pisi 2.3_alpha1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the first alpha for the upcoming 2.3.x releases. This release adds new features for building source packages on different architectures. Changes since 2.2.19 -------------------- Fatih Aşıcı (3): Allow comparing Version objects with strings Add target attribute to Archive tag. It can be used to extract the archive into a sub-directory. Remove the check for repository architecture Gökçen Eraslan (1): Replace FileError with ctx.ui.error since FileError is defined in pisitoolsfunctions. Ozan Çağlayan (8): Add Maintainer tag to components.xml. Handle possible None values for obj when the element is optional The size of the list doesn't really matter at all (#11818) Real fix for #6748: The exception is raised both in getcwd() and chdir() Blacklisted system.base packages aren't really ignored during update (#9991) Feature: Add ability to avoid source packages from building on specific architectures Feature: Use in tags Feature: Add ability to use multiple tags for a source package Serdar Dalgıç (1): Use glob.glob0 and lstrip instead of glob.glob to fix exceptions raising when an invalid file path is used. --- pisi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/__init__.py b/pisi/__init__.py index 7aebad32..8edc5851 100644 --- a/pisi/__init__.py +++ b/pisi/__init__.py @@ -17,7 +17,7 @@ import sys import atexit import logging -__version__ = "2.2.19" +__version__ = "2.3_alpha1" __all__ = [ 'api', 'configfile', 'db']