Skip to content

Commit

Permalink
Bump package version and dependencies. (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanknowles authored Apr 11, 2024
2 parents 428094e + fcfb03d commit 9f7d767
Show file tree
Hide file tree
Showing 37 changed files with 42 additions and 38 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.0.1.2

- Updated version bounds for dependencies.

# 0.0.1.1

- Updated version bounds for dependencies.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright © 2022–2023 Jonathan Knowles
Copyright © 2022–2024 Jonathan Knowles

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions monoidmap.cabal
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
cabal-version: 3.0
name: monoidmap
version: 0.0.1.1
version: 0.0.1.2
bug-reports: https:/jonathanknowles/monoidmap/issues
license: Apache-2.0
license-file: LICENSE
author: Jonathan Knowles
maintainer: [email protected]
copyright: 2022–2023 Jonathan Knowles
copyright: 2022–2024 Jonathan Knowles
category: Data Structures
synopsis: Monoidal map type
description:
Expand All @@ -19,7 +19,7 @@ extra-doc-files:
common dependency-base
build-depends:base >= 4.14.3.0 && < 4.20
common dependency-containers
build-depends:containers >= 0.6.5.1 && < 0.7
build-depends:containers >= 0.6.5.1 && < 0.8
common dependency-deepseq
build-depends:deepseq >= 1.4.4.0 && < 1.6
common dependency-groups
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/MultiMap.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- Provides the 'MultiMap' class, which models a total relation from unique
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/MultiMap/Class.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- Provides the 'MultiMap' class, which models a total relation from unique
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/MultiMap/Instances/MultiMap1.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- An __unlawful__ implementation of 'MultiMap', implemented in terms of 'Map'
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/MultiMap/Instances/MultiMap2.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- A __lawful__ implementation of 'MultiMap', implemented in terms of 'Map' and
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/MultiMap/Instances/MultiMap3.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- A __lawful__ implementation of 'MultiMap', implemented in terms of 'Map' and
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/MultiMap/Instances/MultiMap4.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- A __lawful__ implementation of 'MultiMap', implemented in terms of
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/MultiSet.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- A multiset type, implemented in terms of 'MonoidMap'.
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/NestedMonoidMap.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# LANGUAGE TypeSynonymInstances #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- A nested map with compound keys, implemented in terms of 'MonoidMap'.
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Examples/RecoveredMap.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- An ordinary left-biased map similar to 'Map', implemented in terms of
Expand Down
2 changes: 1 addition & 1 deletion src/internal/Data/MonoidMap/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{- HLINT ignore "Redundant bracket" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- Provides /internal/ operations for the 'MonoidMap' type.
Expand Down
2 changes: 1 addition & 1 deletion src/internal/Data/MonoidMap/Unsafe.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# OPTIONS_GHC -fno-warn-unused-imports #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- Provides /unsafe/ operations for the 'MonoidMap' type.
Expand Down
2 changes: 1 addition & 1 deletion src/public/Data/MonoidMap.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# OPTIONS_GHC -fno-warn-unused-imports #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/AccessSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.AccessSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/ClassSpec.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.ClassSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/ComparisonSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.ComparisonSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/ConversionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.ConversionSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/DistributivitySpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.DistributivitySpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/ExampleSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.ExampleSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/FilterSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.FilterSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/IntersectionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.IntersectionSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/MapSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.MapSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/MembershipSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.MembershipSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/PartitionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.PartitionSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/PrefixSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.PrefixSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/SingletonSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.SingletonSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/SliceSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.SliceSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/SuffixSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.SuffixSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/UnionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.UnionSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Data/MonoidMap/ValiditySpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{-# LANGUAGE RankNTypes #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Data.MonoidMap.ValiditySpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Examples/MultiMapSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Examples.MultiMapSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Examples/RecoveredMapSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{-# HLINT ignore "Use null" #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Examples.RecoveredMapSpec
Expand Down
2 changes: 1 addition & 1 deletion src/test/Test/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{- HLINT ignore "Use null" -}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Test.Common
Expand Down
2 changes: 1 addition & 1 deletion src/test/Test/Hspec/Unit.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# LANGUAGE FunctionalDependencies #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
module Test.Hspec.Unit where
Expand Down
2 changes: 1 addition & 1 deletion src/test/Test/QuickCheck/Classes/Hspec.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# LANGUAGE PolyKinds #-}

-- |
-- Copyright: © 2022–2023 Jonathan Knowles
-- Copyright: © 2022–2024 Jonathan Knowles
-- License: Apache-2.0
--
-- Provides testing functions to check that type class instances obey laws.
Expand Down

0 comments on commit 9f7d767

Please sign in to comment.