packages feed

stdcxx 0.7.0.0 → 0.7.0.1

raw patch · 2 files changed

+10/−5 lines, 2 filesdep −fficxxdep ~fficxx-runtimePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependencies removed: fficxx

Dependency ranges changed: fficxx-runtime

API changes (from Hackage documentation)

- STD.Deletable: class IDeletable a
+ STD.Deletable: class () => IDeletable a
- STD.Deletable.Interface: class IDeletable a
+ STD.Deletable.Interface: class () => IDeletable a
- STD.Map.Template: class IMap tpk tpv
+ STD.Map.Template: class () => IMap tpk tpv
- STD.MapIterator.Template: class IMapIterator tpk tpv
+ STD.MapIterator.Template: class () => IMapIterator tpk tpv
- STD.Ostream: class IOstream a
+ STD.Ostream: class () => IOstream a
- STD.Ostream.Interface: class IOstream a
+ STD.Ostream.Interface: class () => IOstream a
- STD.Pair.Template: class IPair tp1 tp2
+ STD.Pair.Template: class () => IPair tp1 tp2
- STD.SharedPtr.Template: class ISharedPtr tp1
+ STD.SharedPtr.Template: class () => ISharedPtr tp1
- STD.UniquePtr.Template: class IUniquePtr tp1
+ STD.UniquePtr.Template: class () => IUniquePtr tp1
- STD.Vector.Template: class IVector tp1
+ STD.Vector.Template: class () => IVector tp1
- STD.VectorIterator.Template: class IVectorIterator tp1
+ STD.VectorIterator.Template: class () => IVectorIterator tp1

Files

ChangeLog.md view
@@ -1,5 +1,10 @@ # Changelog for stdcxx +## 0.7.0.1++- Remove unnecessary dependency (#210)++ ## 0.7.0.0  - Initial Hackage release of stdcxx
stdcxx.cabal view
@@ -1,15 +1,15 @@ Cabal-version:  3.0 Name:           stdcxx-Version:        0.7.0.0+Version:        0.7.0.1 Synopsis:       Binding to Standard Template Library C++ Description:    Haskell binding to Standard Template Library generated by fficxx-Homepage:       https://github.com/wavewave/fficxx      +Homepage:       https://github.com/wavewave/fficxx license:        BSD-2-Clause license-file:   LICENSE-Author:         Ian-Woo Kim+Author:         Ian-Woo Kim      Maintainer:     Ian-Woo Kim <ianwookim@gmail.com> Category:       FFI-Tested-with:    GHC == 9.0.2 || == 9.2.4 || == 9.4.2 +Tested-with:    GHC == 9.2.4 || == 9.4.2  Build-Type:     Simple Extra-source-files:                 ChangeLog.md@@ -25,7 +25,7 @@   hs-source-dirs: src   ghc-options:  -Wall -funbox-strict-fields -fno-warn-unused-do-bind -fno-warn-orphans -fno-warn-unused-imports   cxx-options: -std=c++17-  Build-Depends: base > 4 && < 5, fficxx >= 0.7, fficxx-runtime >= 0.7, template-haskell+  Build-Depends: base > 4 && < 5, fficxx-runtime >= 0.7.0.1, template-haskell   Exposed-Modules:                        STD                        STD.Ordinary