hoppy-std 0.7.1 → 0.8.0
raw patch · 20 files changed
+23/−23 lines, 20 filesdep ~hoppy-generatorsetup-changedPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hoppy-generator
API changes (from Hackage documentation)
Files
- Setup.hs +1/−1
- hoppy-std.cabal +4/−4
- include/hoppy/std/iterator.hpp +1/−1
- include/hoppy/std/map.hpp +1/−1
- include/hoppy/std/set.hpp +1/−1
- include/hoppy/std/unordered_map.hpp +1/−1
- include/hoppy/std/unordered_set.hpp +1/−1
- include/hoppy/std/utility.hpp +1/−1
- src/Foreign/Hoppy/Generator/Std.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/Internal.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/Iterator.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/List.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/Map.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/Pair.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/Set.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/String.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/UnorderedMap.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/UnorderedSet.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/Vector.hs +1/−1
- src/Foreign/Hoppy/Generator/Std/Wstring.hs +1/−1
Setup.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
hoppy-std.cabal view
@@ -1,15 +1,15 @@ name: hoppy-std-version: 0.7.1+version: 0.8.0 synopsis: C++ FFI generator - Standard library bindings homepage: http://khumba.net/projects/hoppy license: Apache-2.0 license-file: LICENSE author: Bryan Gardiner <bog@khumba.net> maintainer: Bryan Gardiner <bog@khumba.net>-copyright: Copyright 2015-2020 Bryan Gardiner+copyright: Copyright 2015-2021 Bryan Gardiner category: Foreign build-type: Simple-cabal-version: >=1.10+cabal-version: 1.24 description: Hoppy generates Haskell bindings to C++ libraries. .@@ -43,7 +43,7 @@ base >=4.7 && <5 , filepath >=1.0 && <1.5 , haskell-src >=1.0 && <1.1- , hoppy-generator >=0.7 && <0.8+ , hoppy-generator >=0.8 && <0.9 hs-source-dirs: src ghc-options: -W -fwarn-incomplete-patterns -fwarn-unused-do-bind default-language: Haskell2010
include/hoppy/std/iterator.hpp view
@@ -3,7 +3,7 @@ // This file is part of Hoppy. //-// Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.
include/hoppy/std/map.hpp view
@@ -3,7 +3,7 @@ // This file is part of Hoppy. //-// Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.
include/hoppy/std/set.hpp view
@@ -3,7 +3,7 @@ // This file is part of Hoppy. //-// Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.
include/hoppy/std/unordered_map.hpp view
@@ -3,7 +3,7 @@ // This file is part of Hoppy. //-// Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.
include/hoppy/std/unordered_set.hpp view
@@ -3,7 +3,7 @@ // This file is part of Hoppy. //-// Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.
include/hoppy/std/utility.hpp view
@@ -3,7 +3,7 @@ // This file is part of Hoppy. //-// Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/Internal.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/Iterator.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/List.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/Map.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/Pair.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/Set.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/String.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/UnorderedMap.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/UnorderedSet.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/Vector.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Foreign/Hoppy/Generator/Std/Wstring.hs view
@@ -1,6 +1,6 @@ -- This file is part of Hoppy. ----- Copyright 2015-2020 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2021 Bryan Gardiner <bog@khumba.net> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.