packages feed

github-release 0.1.2 → 0.1.4

raw patch · 3 files changed

+62/−54 lines, 3 filesdep ~aesondep ~basedep ~github-releasePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: aeson, base, github-release

API changes (from Hackage documentation)

Files

README.markdown view
@@ -2,6 +2,7 @@  [![Version badge][]][version] [![Build badge][]][build]+[![Windows build badge][]][windows build]  GitHub Release is a command-line utility for uploading files to GitHub releases.@@ -23,3 +24,5 @@ [version]: https://www.stackage.org/package/github-release [Build badge]: https://travis-ci.org/tfausak/github-release.svg [build]: https://travis-ci.org/tfausak/github-release+[Windows build badge]: https://ci.appveyor.com/api/projects/status/github/tfausak/github-release?svg=true+[windows build]: https://ci.appveyor.com/project/TaylorFausak/github-release
github-release.cabal view
@@ -1,16 +1,20 @@-name: github-release-version: 0.1.2-cabal-version: >=1.10-build-type: Simple-license: MIT-license-file: LICENSE.markdown-maintainer: Taylor Fausak-homepage: https://github.com/tfausak/github-release#readme-bug-reports: https://github.com/tfausak/github-release/issues-synopsis: Upload files to GitHub releases.-description:-    GitHub Release is a command-line utility for uploading files to GitHub releases.-category: Utility+-- This file has been generated from package.yaml by hpack version 0.13.0.+--+-- see: https://github.com/sol/hpack++name:           github-release+version:        0.1.4+synopsis:       Upload files to GitHub releases.+description:    GitHub Release is a command-line utility for uploading files to GitHub releases.+category:       Utility+homepage:       https://github.com/tfausak/github-release#readme+bug-reports:    https://github.com/tfausak/github-release/issues+maintainer:     Taylor Fausak+license:        MIT+license-file:   LICENSE.markdown+build-type:     Simple+cabal-version:  >= 1.10+ extra-source-files:     CHANGELOG.markdown     package.yaml@@ -18,36 +22,37 @@     stack.yaml  source-repository head-    type: git-    location: https://github.com/tfausak/github-release+  type: git+  location: https://github.com/tfausak/github-release  library-    exposed-modules:-        GitHubRelease-    build-depends:-        aeson >=0.9.0.1 && <0.10,-        base >=4.8.2.0 && <4.9,-        bytestring >=0.10.6.0 && <0.11,-        http-client >=0.4.28 && <0.5,-        http-client-tls >=0.2.4 && <0.3,-        http-types ==0.9.*,-        mime-types >=0.1.0.7 && <0.2,-        optparse-generic >=1.1.0 && <1.2,-        text >=1.2.2.1 && <1.3,-        unordered-containers >=0.2.5.1 && <0.3,-        uri-templater >=0.2.0.0 && <0.3-    default-language: Haskell2010-    hs-source-dirs: library-    other-modules:-        Paths_github_release-    ghc-options: -Wall+  hs-source-dirs:+      library+  ghc-options: -Wall+  build-depends:+      aeson >=0.9.0.1 && <0.12+    , base >=4.8.2.0 && <4.9+    , bytestring >=0.10.6.0 && <0.11+    , http-client >=0.4.28 && <0.5+    , http-client-tls >=0.2.4 && <0.3+    , http-types >=0.9 && <0.10+    , mime-types >=0.1.0.7 && <0.2+    , optparse-generic >=1.1.0 && <1.2+    , text >=1.2.2.1 && <1.3+    , unordered-containers >=0.2.5.1 && <0.3+    , uri-templater >=0.2.0.0 && <0.3+  exposed-modules:+      GitHubRelease+  other-modules:+      Paths_github_release+  default-language: Haskell2010  executable github-release-    main-is: Main.hs-    build-depends:-        base >=4.8.2.0 && <4.9,-        github-release >=0.1.2 && <0.2-    default-language: Haskell2010-    hs-source-dirs: executable-    ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N-+  main-is: Main.hs+  hs-source-dirs:+      executable+  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N+  build-depends:+      base+    , github-release+  default-language: Haskell2010
package.yaml view
@@ -21,17 +21,17 @@ github: tfausak/github-release library:   dependencies:-  - aeson-  - base-  - bytestring-  - http-client-  - http-client-tls-  - http-types-  - mime-types-  - optparse-generic-  - text-  - unordered-containers-  - uri-templater+  - aeson >=0.9.0.1 && <0.12+  - base >=4.8.2.0 && <4.9+  - bytestring >=0.10.6.0 && <0.11+  - http-client >=0.4.28 && <0.5+  - http-client-tls >=0.2.4 && <0.3+  - http-types >=0.9 && <0.10+  - mime-types >=0.1.0.7 && <0.2+  - optparse-generic >=1.1.0 && <1.2+  - text >=1.2.2.1 && <1.3+  - unordered-containers >=0.2.5.1 && <0.3+  - uri-templater >=0.2.0.0 && <0.3   other-modules: Paths_github_release   source-dirs: library license: MIT@@ -39,4 +39,4 @@ maintainer: Taylor Fausak name: github-release synopsis: Upload files to GitHub releases.-version: '0.1.2'+version: '0.1.4'