Re: [Haskell-cafe] versioning of Haskell packages

2011-05-02 Thread Henning Thielemann
Rogan Creswick schrieb: > We *do* still have some trouble maintaining / enforcing the PVP in > general, and there are a few things that it doesn't cover (I don't > believe exception behavior is covered, for example, although I'd argue > that throwing more exceptions than a previous version introdu

Re: [Haskell-cafe] versioning of Haskell packages

2011-04-30 Thread Daniil Elovkov
On 30.04.2011 5:06, Rogan Creswick wrote: On Fri, Apr 29, 2011 at 3:05 PM, Daniil Elovkov wrote: Hello list I have an idea on versioning of Haskell packages and a small question about release model of Haskell Platform. Since the latter is shorter let's start with it. So, what is the release

Re: [Haskell-cafe] versioning of Haskell packages

2011-04-29 Thread Rogan Creswick
On Fri, Apr 29, 2011 at 3:05 PM, Daniil Elovkov wrote: > Hello list > > I have an idea on versioning of Haskell packages and a small question about > release model of Haskell Platform. Since the latter is shorter let's start > with it. > > So, what is the release model of Haskell Platform? Is it r

Re: [Haskell-cafe] versioning of Haskell packages

2011-04-29 Thread Magnus Therning
On Sat, Apr 30, 2011 at 02:05:39AM +0400, Daniil Elovkov wrote: > Hello list > > I have an idea on versioning of Haskell packages and a small > question about release model of Haskell Platform. Since the latter > is shorter let's start with it. > > So, what is the release model of Haskell Platfor

Re: [Haskell-cafe] Versioning

2006-12-21 Thread Lemmih
On 12/20/06, Bulat Ziganshin <[EMAIL PROTECTED]> wrote: Hello Joachim, Wednesday, December 20, 2006, 11:22:24 AM, you wrote: > The update code would now have to unmarshall a blob of game data, > traverse it to find all instances of SomeData, wrap them in a > one-element list to turn them into S

Re: [Haskell-cafe] Versioning

2006-12-21 Thread Bulat Ziganshin
Hello Joachim, Wednesday, December 20, 2006, 11:22:24 AM, you wrote: > The update code would now have to unmarshall a blob of game data, > traverse it to find all instances of SomeData, wrap them in a > one-element list to turn them into SomeData1s, reconstruct the blob of > game data with the

Re: [Haskell-cafe] Versioning

2006-12-20 Thread Neil Mitchell
Hi Jo, You seem to be describing SYB and not knowing it: http://homepages.cwi.nl/~ralf/syb1/ That basically does exactly what you've requested, in terms of traversing all items when only one matters. That said, serialisation is still a hard problem - think long and hard before picking a data for