reorder-expression 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+15/−10 lines, 2 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Expression.Reorder: instance (GHC.Show.Show a, GHC.Show.Show e) => GHC.Show.Show (Expression.Reorder.Validation e a)
- Expression.Reorder: instance GHC.Base.Functor (Expression.Reorder.Validation e)
- Expression.Reorder: instance GHC.Base.Semigroup e => GHC.Base.Applicative (Expression.Reorder.Validation e)
- Expression.Reorder: instance GHC.Generics.Generic (Expression.Reorder.Validation e a)
- Expression.Reorder: instance GHC.Generics.Generic Expression.Reorder.Ambiguity
- Expression.Reorder: instance GHC.Generics.Generic Expression.Reorder.Assoc
- Expression.Reorder: instance GHC.Generics.Generic Expression.Reorder.Fixity
- Expression.Reorder: instance GHC.Show.Show Expression.Reorder.Ambiguity
- Expression.Reorder: instance GHC.Show.Show Expression.Reorder.Assoc
- Expression.Reorder: instance GHC.Show.Show Expression.Reorder.Fixity
+ Expression.Reorder: instance (GHC.Internal.Show.Show a, GHC.Internal.Show.Show e) => GHC.Internal.Show.Show (Expression.Reorder.Validation e a)
+ Expression.Reorder: instance GHC.Internal.Base.Functor (Expression.Reorder.Validation e)
+ Expression.Reorder: instance GHC.Internal.Base.Semigroup e => GHC.Internal.Base.Applicative (Expression.Reorder.Validation e)
+ Expression.Reorder: instance GHC.Internal.Generics.Generic (Expression.Reorder.Validation e a)
+ Expression.Reorder: instance GHC.Internal.Generics.Generic Expression.Reorder.Ambiguity
+ Expression.Reorder: instance GHC.Internal.Generics.Generic Expression.Reorder.Assoc
+ Expression.Reorder: instance GHC.Internal.Generics.Generic Expression.Reorder.Fixity
+ Expression.Reorder: instance GHC.Internal.Show.Show Expression.Reorder.Ambiguity
+ Expression.Reorder: instance GHC.Internal.Show.Show Expression.Reorder.Assoc
+ Expression.Reorder: instance GHC.Internal.Show.Show Expression.Reorder.Fixity
Files
- CHANGELOG.md +8/−0
- reorder-expression.cabal +7/−10
CHANGELOG.md view
@@ -1,5 +1,13 @@ # Changelog for reorder-expression +## 0.1.0.2++* Updated for GHC 9.10.++## 0.1.0.1++* Updated for GHC 9.4, 9.6, 9.8.+ ## 0.1.0.0 * Initial release.
reorder-expression.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: reorder-expression-version: 0.1.0.1+version: 0.1.0.2 synopsis: Reorder expressions in a syntax tree according to operator fixities. description: A library for reordering expressions in a syntax tree generically according to operator associativity and precedence.@@ -15,14 +15,11 @@ category: Language tested-with:- GHC == 8.6.5- , GHC == 8.8.4- , GHC == 8.10.7- , GHC == 9.0.2- , GHC == 9.2.8- , GHC == 9.4.5- , GHC == 9.6.2- , GHC == 9.8.1+ GHC == 9.2.8+ , GHC == 9.4.8+ , GHC == 9.6.6+ , GHC == 9.8.4+ , GHC == 9.10.1 extra-doc-files: CHANGELOG.md@@ -43,7 +40,7 @@ -Wpartial-fields build-depends:- base >= 4.12 && < 4.20+ base >= 4.12 && < 4.21 default-language: Haskell2010