From 98198545511883707263d510b83e3c2a0cbad98d Mon Sep 17 00:00:00 2001 From: dmjio Date: Sun, 9 Feb 2025 19:16:52 -0600 Subject: [PATCH] Upgrade cabal version to 2.2 for all cabal files. --- examples/miso-examples.cabal | 4 ++-- miso.cabal | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/miso-examples.cabal b/examples/miso-examples.cabal index 9c38941c..36ac4186 100644 --- a/examples/miso-examples.cabal +++ b/examples/miso-examples.cabal @@ -1,3 +1,4 @@ +cabal-version: 2.2 name: miso-examples version: 1.8.6.0 category: Web, Miso, Data Structures @@ -7,10 +8,9 @@ homepage: http://github.com/dmjio/miso copyright: Copyright (c) 2016-2025 David M. Johnson bug-reports: https://github.com/dmjio/miso/issues build-type: Simple -cabal-version: 1.22 synopsis: A tasty Haskell front-end web framework description: Examples for miso -license: BSD3 +license: BSD-3-Clause license-file: LICENSE extra-source-files: diff --git a/miso.cabal b/miso.cabal index 64d31851..5881f44d 100644 --- a/miso.cabal +++ b/miso.cabal @@ -1,7 +1,8 @@ +cabal-version: 2.2 name: miso version: 1.8.6.0 category: Web, Miso, Data Structures -license: BSD3 +license: BSD-3-Clause license-file: LICENSE author: David M. Johnson maintainer: David M. Johnson @@ -10,7 +11,6 @@ copyright: Copyright (c) 2016-2025 David M. Johnson bug-reports: https://github.com/dmjio/miso/issues build-type: Simple extra-source-files: README.md -cabal-version: 1.22 synopsis: A tasty Haskell front-end web framework description: Miso is a small, production-ready, "isomorphic" Haskell front-end framework featuring a virtual-dom, recursive diffing / patching algorithm, event delegation, event batching, SVG, Server-sent events, Websockets, type-safe servant-style routing and an extensible Subscription-based subsystem. Inspired by Elm, Redux and Bobril. Miso is pure by default, but side effects (like XHR) can be introduced into the system via the Effect data type. Miso makes heavy use of the GHCJS FFI and therefore has minimal dependencies.