hoppy-std 0.8.0 → 0.9.0
raw patch · 20 files changed
+24/−24 lines, 20 filesdep ~basedep ~hoppy-generatorsetup-changedPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, hoppy-generator
API changes (from Hackage documentation)
Files
- Setup.hs +1/−1
- hoppy-std.cabal +5/−5
- 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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,12 +1,12 @@ name: hoppy-std-version: 0.8.0+version: 0.9.0 synopsis: C++ FFI generator - Standard library bindings-homepage: http://khumba.net/projects/hoppy+homepage: https://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-2021 Bryan Gardiner+copyright: Copyright 2015-2024 Bryan Gardiner category: Foreign build-type: Simple cabal-version: 1.24@@ -40,10 +40,10 @@ Foreign.Hoppy.Generator.Std.Internal , Paths_hoppy_std build-depends:- base >=4.7 && <5+ base >=4.10 && <5 , filepath >=1.0 && <1.5 , haskell-src >=1.0 && <1.1- , hoppy-generator >=0.8 && <0.9+ , hoppy-generator >=0.9 && <0.10 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-2021 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+// Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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-2021 Bryan Gardiner <bog@khumba.net>+-- Copyright 2015-2024 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.