packages feed

termbox 1.1.0.1 → 1.1.0.2

raw patch · 3 files changed

+16/−8 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+## [1.1.0.2] - 2023-10-15++- Support GHC 9.8.1+ ## [1.1.0.1] - 2022-12-01  - Make `char` applied to a wide character result in a space instead of nothing
LICENSE view
@@ -1,4 +1,4 @@-Copyright 2018-2022 Mitchell Rosen+Copyright 2018-2023 Mitchell Rosen, Travis Staton  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
termbox.cabal view
@@ -2,9 +2,9 @@  category: User Interfaces author: Mitchell Rosen-bug-reports: https://github.com/termbox/termbox-haskell/issues+bug-reports: https://github.com/awkward-squad/termbox/issues build-type: Simple-copyright: (c) 2018-2022, Mitchell Rosen+copyright: (c) 2018-2023 Mitchell Rosen, Travis Staton description:   This package provides a high-level wrapper around @termbox@, a simple C   library for writing text-based user interfaces: <https://github.com/termbox/termbox>@@ -18,18 +18,19 @@ homepage: https://github.com/termbox/termbox-haskell license: BSD-3-Clause license-file: LICENSE-maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>+maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>, Travis Staton <hello@travisstaton.com> name: termbox synopsis: termbox-tested-with: GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.2-version: 1.1.0.1+tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1+version: 1.1.0.2  extra-source-files:   CHANGELOG.md  source-repository head   type: git-  location: git://github.com/termbox/termbox-haskell.git+  location: git://github.com/awkward-squad/termbox.git+  subdir: termbox  common component   default-extensions:@@ -68,11 +69,14 @@   if impl(ghc >= 9.2)     ghc-options:       -Wno-missing-kind-signatures+  if impl(ghc >= 9.8)+    ghc-options:+      -Wno-missing-role-annotations  library   import: component   build-depends:-    base ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17,+    base ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,     termbox-bindings-hs ^>= 0.1,   exposed-modules: Termbox   hs-source-dirs: src