2 커밋 7376ea540b ... 03b60419db

작성자 SHA1 메시지 날짜
  sheaf 03b60419db v 2.1.2.0 7 달 전
  Koji Miyazato d6de614d05 Fix dependency 7 달 전
3개의 변경된 파일10개의 추가작업 그리고 10개의 파일을 삭제
  1. 5 0
      CHANGELOG.md
  2. 0 5
      cabal.project
  3. 5 5
      finitary.cabal

+ 5 - 0
CHANGELOG.md

@@ -1,5 +1,10 @@
 # Revision history for finitary
 
+## 2.1.2.0 -- 2024-05-06
+
+* Allow `typelits-witnesses-0.4.0.1`, and bump upper bounds of
+  `hspec` and `hspec-hedgehog` in the test component (thanks to viercc).
+
 ## 2.1.1.1 -- 2022-12-03
 
 * Bump some upper bounds, including `base`.

+ 0 - 5
cabal.project

@@ -7,9 +7,3 @@ package finitary
 constraints:
   some >= 1.0.2,
   semirings >= 0.6
-
-source-repository-package
-  type: git
-  location: https://github.com/sheaf/typelits-witnesses
-  tag: 5db7b553a3bf2c5bb98da0abf3ab37115c078df9

+ 5 - 5
finitary.cabal

@@ -1,6 +1,6 @@
 cabal-version:      2.2
 name:               finitary
-version:            2.1.1.1
+version:            2.1.2.0
 synopsis:           A better, more type-safe Enum.
 description:
   Provides a type class witnessing that a type has
@@ -70,7 +70,7 @@ library
       , vector-sized
           >= 1.4.1.0 && < 1.6
       , typelits-witnesses
-         ^>= 0.4.0.0
+         ^>= 0.4.0.1
 
   hs-source-dirs:   src
   ghc-options:
@@ -91,11 +91,11 @@ test-suite tests
     , ghc-typelits-knownnat
     , ghc-typelits-natnormalise
     , hedgehog
-         >= 1.0.2 && < 1.3
+        >= 1.0.2 && < 1.3
     , hspec
-        ^>= 2.7.1
+        >= 2.7.1 && < 3.0
     , hspec-hedgehog
-        ^>= 0.0.1.2
+        >= 0.0.1.2 && < 0.2
     , primitive
     , template-haskell
     , typelits-witnesses