On Tue, Sep 16, 2008 at 1:53 AM, Steve Holden <[EMAIL PROTECTED]> wrote: > > J. Pablo Fernández wrote: >> Hello, >> >> Which one is the 1.0 branch on the SVN repo? >> >> Thanks. >> >> > Erm, that would be the one tagged "1.0" I guess. But I haven't actually > checked, because the best way to get 1.0 is to download it from
Sounds like it's time to brush up on your SVN nomenclature, Steve :-) A Tag is an immutable reflection of a point in time in the development process. A Branch is a copy of a body of code at a point in time that can be modified independent of the original version. Now, it gets hazy because SVN implements both Tags and Branches as copies, so the only thing stopping you from modifying the code in a Tag is convention. However, Django intends to honor that convention. Django has tagged v1.0. At some point in the very near future, we will create a v1.0.X branch. The reason for deferring the creation of a branch is that once we have branched, bugs need to be fixed in two placed - both trunk and branch. This is a pain to manage, so for a week or two after the release, we will refrain from adding features and just fix bugs (at the moment, mostly documentation bugs). So - the answer to the original question is "There isn't a 1.0 branch yet, but there will be very soon". Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

