From 8aeba2abedb21a67303def14c650d9a4a808162e Mon Sep 17 00:00:00 2001 From: Richard Eisenberg Date: Mon, 8 Jan 2018 11:09:08 -0500 Subject: [PATCH] Version bump --- CHANGES.md | 5 +++++ Makefile | 2 +- singletons.cabal | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 93fbf67f..2d216bd6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ Changelog for singletons project ================================ +2.4.1 +----- +* Restore the `TyCon1`, `TyCon2`, etc. types. It turns out that the new +`TyCon` doesn't work with kind-polymorphic tycons. + 2.4 --- * Require GHC 8.4. diff --git a/Makefile b/Makefile index 8109d798..d77fd411 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -version=2.4 +version=2.4.1 source=src/Data/Singletons.hs src/Data/Singletons/*.hs src/Data/Singletons/Prelude/* src/Data/Singletons/Promote/* src/Data/Singletons/Single/* src/Data/Promotion/* src/Data/Promotion/Prelude/* test-suite=tests/SingletonsTestSuite.hs tests/SingletonsTestSuiteUtils.hs test-byhand=tests/ByHand.hs tests/ByHandAux.hs diff --git a/singletons.cabal b/singletons.cabal index dcece2a1..d2edc498 100644 --- a/singletons.cabal +++ b/singletons.cabal @@ -1,5 +1,5 @@ name: singletons -version: 2.4 +version: 2.4.1 -- Remember to bump version in the Makefile as well cabal-version: >= 1.10 synopsis: A framework for generating singleton types @@ -38,7 +38,7 @@ description: source-repository this type: git location: https://github.com/goldfirere/singletons.git - tag: v2.4 + tag: v2.4.1 library hs-source-dirs: src