tinyid 0.1.0.0 → 0.1.1.0
raw patch · 4 files changed
+13/−9 lines, 4 filesdep ~basedep ~bytestring
Dependency ranges changed: base, bytestring
Files
- CHANGELOG.md +5/−1
- LICENSE +1/−1
- src/Data/TinyID.hs +0/−0
- tinyid.cabal +7/−7
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for tinyid -## 0.1.0.0 -- YYYY-mm-dd+## 0.1.0.0 -- 2022-09-29 * First version. Released on an unsuspecting world.++## 0.1.1.0 -- 2024-02-10++* Update version bounds and package metadata.
LICENSE view
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Maxine D.+Copyright (c) 2024 freepuppies Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
src/Data/TinyID.hs view
tinyid.cabal view
@@ -1,12 +1,12 @@ cabal-version: 2.4 name: tinyid-version: 0.1.0.0+version: 0.1.1.0 synopsis: A secure URL-friendly string ID generator-homepage: https://github.com/m4xine/tinyid-bug-reports: https://github.com/m4xine/tinyid/issues+homepage: https://github.com/freepuppies/tinyid+bug-reports: https://github.com/freepuppies/tinyid/issues license: MIT license-file: LICENSE-author: m4xine+author: freepuppies maintainer: maxined@pm.me category: Data extra-source-files: CHANGELOG.md@@ -15,8 +15,8 @@ exposed-modules: Data.TinyID build-depends: - base >= 4.14.3 && < 4.15,- bytestring >= 0.10.12 && < 0.11,- entropy >= 0.4.1 && < 0.5+ base >= 4.17.2 && < 4.18,+ bytestring >= 0.11.5 && < 0.12,+ entropy >= 0.4.1 && < 0.5 hs-source-dirs: src default-language: Haskell2010