tel / oauthenticated

Authentication-ho! OAuth 1.0 for Haskell atop http-conduit.
MIT License
6 stars 6 forks source link

Upload last version to hackage #12

Closed valpackett closed 9 years ago

valpackett commented 9 years ago

The last version on hackage depends on base < 4.7... :(

valpackett commented 9 years ago

Doesn't compile...

src/Network/OAuth/Simple.hs:73:18:
    Could not find module ‘Network.URI’
    It is a member of the hidden package ‘network-uri-2.6.0.1’.
    Perhaps you need to add ‘network-uri’ to the build-depends in your .cabal file.
    Use -v to see a list of the files searched for.
Failed to install oauthenticated-0.1.3.2

(also, why not base == 4.* ?)

tel commented 9 years ago

I don't feel confident with base == 4.* because breaking changes in base occur at the major version level, so it's unwise to commit to 4.*.

The network-uri bug is that Network.URI got spun off. I believe that Network.URI is the only module needed, so it'd be safe to change the dep to just network-uri.

tel commented 9 years ago

I could also just constrain network < 2.6 for now.

tel commented 9 years ago

Should be fixed now.