github-release 1.2.2 → 1.2.3
raw patch · 1 files changed
+13/−12 lines, 1 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- GitHubRelease: Release :: String <?> "The name of the release" -> Maybe String <?> "The GitHub owner, either a user or organization." -> String <?> "The GitHub repository name." -> String <?> "The tag name." -> Maybe String <?> "Release description." -> String <?> "Your OAuth2 token." -> Maybe Bool <?> "Indicates if this is a pre-release." -> Maybe Bool <?> "Indicates if this is a draft." -> Command
+ GitHubRelease: Release :: (String <?> "The name of the release") -> (Maybe String <?> "The GitHub owner, either a user or organization.") -> (String <?> "The GitHub repository name.") -> (String <?> "The tag name.") -> (Maybe String <?> "Release description.") -> (String <?> "Your OAuth2 token.") -> (Maybe Bool <?> "Indicates if this is a pre-release.") -> (Maybe Bool <?> "Indicates if this is a draft.") -> Command
- GitHubRelease: Upload :: FilePath <?> "The path to the local file to upload." -> String <?> "The name to give the file on the release." -> Maybe String <?> "The GitHub owner, either a user or organization." -> String <?> "The GitHub repository name." -> String <?> "The tag name." -> String <?> "Your OAuth2 token." -> Command
+ GitHubRelease: Upload :: (FilePath <?> "The path to the local file to upload.") -> (String <?> "The name to give the file on the release.") -> (Maybe String <?> "The GitHub owner, either a user or organization.") -> (String <?> "The GitHub repository name.") -> (String <?> "The tag name.") -> (String <?> "Your OAuth2 token.") -> Command
Files
- github-release.cabal +13/−12
github-release.cabal view
@@ -1,11 +1,13 @@--- This file has been generated from package.yaml by hpack version 0.20.0.+cabal-version: 1.12++-- This file has been generated from package.yaml by hpack version 0.31.0. -- -- see: https://github.com/sol/hpack ----- hash: b42611faba73e0c69b4f6cc0880dd60e6eed523acd8f94163fda5e50719a5833+-- hash: 288a05d944a4014fa462681234f72d76f87dc5ac2bdbced2f386fb8cf9c42bcf name: github-release-version: 1.2.2+version: 1.2.3 synopsis: Upload files to GitHub releases. description: GitHub Release uploads files to GitHub releases. category: Utility@@ -15,19 +17,22 @@ license: MIT license-file: LICENSE.markdown build-type: Simple-cabal-version: >= 1.10 source-repository head type: git location: https://github.com/tfausak/github-release library+ exposed-modules:+ GitHubRelease+ other-modules:+ Paths_github_release hs-source-dirs: library ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe build-depends: aeson >=0.11.2 && <0.12 || >=1.0.2 && <1.5- , base >=4.9.0 && <4.12+ , base >=4.9.0 && <4.13 , bytestring >=0.10.8 && <0.11 , http-client >=0.4.31 && <0.6 , http-client-tls >=0.2.4 && <0.4@@ -39,20 +44,18 @@ , uri-templater >=0.2.1 && <0.4 if impl(ghc >= 8.4) ghc-options: -Wno-partial-fields- exposed-modules:- GitHubRelease- other-modules:- Paths_github_release default-language: Haskell2010 executable github-release main-is: Main.hs+ other-modules:+ Paths_github_release hs-source-dirs: executables ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe -rtsopts -threaded build-depends: aeson >=0.11.2 && <0.12 || >=1.0.2 && <1.5- , base >=4.9.0 && <4.12+ , base >=4.9.0 && <4.13 , bytestring >=0.10.8 && <0.11 , github-release , http-client >=0.4.31 && <0.6@@ -65,6 +68,4 @@ , uri-templater >=0.2.1 && <0.4 if impl(ghc >= 8.4) ghc-options: -Wno-partial-fields- other-modules:- Paths_github_release default-language: Haskell2010