From: Oleg B. <ph...@ph...> - 2010-12-06 15:47:00
|
Hello! I'm pleased to announce version 0.15.0, the first stable release of branch 0.15 of SQLObject. What is SQLObject ================= SQLObject is an object-relational mapper. Your database tables are described as classes, and rows are instances of those classes. SQLObject is meant to be easy to use and quick to get started with. SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite, Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB). Where is SQLObject ================== Site: http://sqlobject.org Development: http://sqlobject.org/devel/ Mailing list: https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss Archives: http://news.gmane.org/gmane.comp.python.sqlobject Download: http://cheeseshop.python.org/pypi/SQLObject/0.15.0 News and changes: http://sqlobject.org/News.html What's New ========== * Major API change: all signals are sent with the instance (or the class) as the first parameter. The following signals were changed: RowCreateSignal, RowCreatedSignal, DeleteColumnSignal. * Major API change: post-processing functions for all signals are called with the instance as the first parameter. The following signals were changed: RowUpdatedSignal, RowDestroySignal, RowDestroyedSignal. For a more complete list, please see the news: http://sqlobject.org/News.html Oleg. -- Oleg Broytman http://phd.pp.ru/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |
From: Oleg B. <ph...@ph...> - 2010-12-06 15:56:17
|
On Mon, Dec 06, 2010 at 06:46:45PM +0300, Oleg Broytman wrote: > 0.15 The branch 0.13 is no longer maintained. > What's New Nothing changed since 0.15.0b1. Oleg. -- Oleg Broytman http://phd.pp.ru/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |
From: Daniel F. <fet...@go...> - 2010-12-07 12:41:16
|
On 12/6/10, Oleg Broytman <ph...@ph...> wrote: > On Mon, Dec 06, 2010 at 06:46:45PM +0300, Oleg Broytman wrote: >> 0.15 > > The branch 0.13 is no longer maintained. > >> What's New > > Nothing changed since 0.15.0b1. Oleg, I guess it's not intentional that easy_install -U sqlobject installs the 0.16dev version not the stable 0.15, is it? Cheers, Daniel -- Psss, psss, put it down! - http://www.cafepress.com/putitdown |
From: Oleg B. <ph...@ph...> - 2010-12-07 12:55:00
|
On Tue, Dec 07, 2010 at 01:41:09PM +0100, Daniel Fetchinson wrote: > easy_install -U sqlobject > > installs the 0.16dev version not the stable 0.15, is it? easy_install -U sqlobject installs the most recent version it can find - which is the trunk. I don't know how to tell setuptools to distinguish stable and development branches, do you? easy_install sqlobject==0.15.0 is the only way I know. Oleg. -- Oleg Broytman http://phd.pp.ru/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |
From: Daniel F. <fet...@go...> - 2010-12-07 15:30:35
|
>> easy_install -U sqlobject >> >> installs the 0.16dev version not the stable 0.15, is it? > > easy_install -U sqlobject > > installs the most recent version it can find - which is the trunk. I > don't know how to tell setuptools to distinguish stable and development > branches, do you? > > easy_install sqlobject==0.15.0 > > is the only way I know. This is what I did after all. And no, I'm not aware of another trick. I just don't recall having this issue until now, I mean I always did "easy_install -U sqlobject" and did not end up with a dev version, but I might be wrong. Maybe I did but don't remember :) This whole thing is not a big deal, as I've said I do "easy_install sqlobject==0.15.0" and everything is fine. Cheers, Daniel -- Psss, psss, put it down! - http://www.cafepress.com/putitdown |
From: Oleg B. <ph...@ph...> - 2010-12-07 15:39:18
|
On Tue, Dec 07, 2010 at 04:30:26PM +0100, Daniel Fetchinson wrote: > I just don't recall having this issue until now, I mean I always did > "easy_install -U sqlobject" and did not end up with a dev version, but > I might be wrong. Maybe I did but don't remember :) It could be I've messed download URLs. I don't know enough about setuptools to be sure I fixed the problem with the latest commit. Oleg. -- Oleg Broytman http://phd.pp.ru/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |