IreneKnapp / direct-sqlite

MIT License
35 stars 54 forks source link

lower required text library version #19

Closed nurpax closed 12 years ago

nurpax commented 12 years ago

Haskell Platform provides text-0.11.2.0 but direct-sqlite was requiring text-0.11.2.2. This caused installation of direct-sqlite to install another copy of text which lead to linking problems for some users.

See issue #18 on github.

Bumped up direct-sqlite library version to 2.2.1 from 2.2. This is switching to a.b.c from a.b scheme. I think it makes sense this way so that docs updates and minor tweaks like this can just bump up the .c part of the version.

nurpax commented 12 years ago

Tested by running the unit tests. Seems to work. Also tried a clean install with and without this change and I can confirm that text was earlier being installed twice whereas with this change the redundant text installation disppears.

IreneKnapp commented 12 years ago

Actually, I always meant to do that with the version numbers, and yes it makes sense. Thanks for doing this work! Merging now.