pagerduty 0.0.1 → 0.0.1.1
raw patch · 3 files changed
+20/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +14/−0
- pagerduty.cabal +3/−1
- src/Network/PagerDuty/Integration.hs +3/−2
README.md view
@@ -0,0 +1,14 @@+# PagerDuty++[](https://travis-ci.org/brendanhay/pagerduty)++* [Contribute](#contribute)+* [Licence](#licence)++## Contribute++For any problems, comments, or feedback please create an issue [here on GitHub](https://github.com/brendanhay/pagerduty/issues).++## Licence++PagerDuty is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).
pagerduty.cabal view
@@ -1,5 +1,5 @@ name: pagerduty-version: 0.0.1+version: 0.0.1.1 synopsis: Client library for PagerDuty Integration and REST APIs. homepage: http://github.com/brendanhay/pagerduty license: OtherLicense@@ -25,6 +25,8 @@ . /Warning:/ This is an experimental preview release which is still under heavy development and not intended for public consumption, caveat emptor!+ .+ /Note:/ An alternative source for Haddock documentation can be found <http://brendanhay.nz/pagerduty here>. extra-source-files: README.md
src/Network/PagerDuty/Integration.hs view
@@ -292,6 +292,7 @@ -> Event -> m (Either Error Response) submitWith m l e = request m l e $- def { Client.host = "events.pagerduty.com"- , Client.path = "/generic/2010-04-15/create_event.json"+ def { Client.host = "events.pagerduty.com"+ , Client.path = "/generic/2010-04-15/create_event.json"+ , Client.method = "POST" }