atlassian-connect-descriptor 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+20/−4 lines, 2 filesdep ~aesonPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson
API changes (from Hackage documentation)
Files
- README.markdown +15/−0
- atlassian-connect-descriptor.cabal +5/−4
+ README.markdown view
@@ -0,0 +1,15 @@+# Atlassian Connect Descriptor++When writing an Atlassian Connect add-on in Haskell you will want to create an Atlassian Connect Descriptor. You can+use this library to help you generate an Atlassian Connect Descriptor in a type safe manner and easily convert it to the+required JSON using the Aeson library.++You can [find this library on Hackage][4]; the documentation is quite extensive.++This library is used in production by the [My Reminders][1] Atlassian Connect add-on; as you can view in our [source][2]+and [live][3].++ [1]: https://my-reminders.useast.atlassian.io/+ [2]: https://bitbucket.org/atlassianlabs/my-reminders/src/9bb5e43a78ed3f8565fbbf64f24218e27f87c7af/src/AtlassianConnect.hs?at=master+ [3]: https://my-reminders.useast.atlassian.io/atlassian-connect.json+ [4]: http://hackage.haskell.org/package/atlassian-connect-descriptor
atlassian-connect-descriptor.cabal view
@@ -10,13 +10,14 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1.0.0+version: 0.1.0.1 -- A short (one-line) description of the package. synopsis: Code that helps you create a valid Atlassian Connect Descriptor. -- A longer description of the package.--- description: +description: Allows you to generate an Atlassian Connect Descriptor in a typesafe manner and easily convert it+ it into JSON using the fantastic Aeson library. -- The license under which the package is released. license: Apache-2.0@@ -40,7 +41,7 @@ -- Extra files to be distributed with the package, such as examples or a -- README.--- extra-source-files: +extra-source-files: README.markdown -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.20@@ -68,7 +69,7 @@ -- Other library packages from which modules are imported. build-depends: base >=4.6 && <5- , aeson > 0.7.0.3 && < 0.8+ , aeson > 0.7.0.3 && < 0.9 , text >= 0.11 && <= 1.2 , time-units == 1.* , cases == 0.1.*