lens-toml-parser 0.3.0.1 → 0.3.0.2
raw patch · 4 files changed
+11/−6 lines, 4 filesdep ~timePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: time
API changes (from Hackage documentation)
Files
- ChangeLog.md +5/−0
- LICENSE +1/−1
- lens-toml-parser.cabal +4/−4
- src/Toml/Lens.hs +1/−1
ChangeLog.md view
@@ -38,3 +38,8 @@ * Updated to dwergaz >=3.0. * Tweaked tests.++## 0.3.0.2 -- 2025-02-26++* Updated copyright dates.+* Adjusted constraints on time.
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2017-2024 Henry Till+Copyright (c) 2017-2025 Henry Till Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice
lens-toml-parser.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: lens-toml-parser-version: 0.3.0.1+version: 0.3.0.2 synopsis: Lenses for toml-parser description: This library provides lenses for toml-parser. license: ISC@@ -10,11 +10,11 @@ author: Henry Till maintainer: henrytill@gmail.com homepage: https://github.com/henrytill/lens-toml-parser-copyright: Copyright (c) 2017-2024, Henry Till+copyright: Copyright (c) 2017-2025, Henry Till category: Language, Lenses build-type: Simple cabal-version: >=1.10-tested-with: GHC ==9.4.8 || ==9.6.6 || ==9.8.2+tested-with: GHC ==9.4.8 || ==9.6.6 || ==9.8.4 || ==9.10.1 || ==9.12.1 extra-source-files: .gitignore@@ -33,7 +33,7 @@ build-depends: base >=4.14 && <5 , profunctors >=5.2 && <5.7 , text >=0.2 && <3- , time >=1.9 && <1.13+ , time >=1.9 && <1.13 || >=1.14 && <1.15 , toml-parser >=2.0 && <2.1 hs-source-dirs: src default-language: Haskell2010
src/Toml/Lens.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Toml.Lens -- Description : Lenses for toml-parser--- Copyright : (c) 2017-2024, Henry Till+-- Copyright : (c) 2017-2025, Henry Till -- License : ISC -- Maintainer : henrytill@gmail.com -- Stability : experimental