From 6ff344b7fd9156b79074c2fdf5e314edab3fea46 Mon Sep 17 00:00:00 2001 From: nek0 Date: Wed, 26 Apr 2017 21:59:45 +0200 Subject: [PATCH] version bump --- README.md | 3 +++ config/models | 8 ++++---- eidolon.cabal | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e790273..835abba 100755 --- a/README.md +++ b/README.md @@ -181,6 +181,9 @@ Migrations/0.0.7-0.1.0.0/Migration.hs` ### 0.1.7.2-0.1.8.0 * No database changes, just new dependencies to install. +### 0.1.8.8-0.1.9.0 +* You can drop the table `activator` from the database. It is no longer needed. + ## Acknowledgements: * This software uses the web Framework "Yesod" by Michael Snoyman. See more at: diff --git a/config/models b/config/models index 90034ee..5904ae4 100755 --- a/config/models +++ b/config/models @@ -26,10 +26,10 @@ User active Bool default=True UniqueUser name deriving Typeable Eq Show -Activator - token Text - user User - deriving Eq Show +-- Activator +-- token Text +-- user User +-- deriving Eq Show Token token ByteString kind Text diff --git a/eidolon.cabal b/eidolon.cabal index 7639b3d..8cd7dd6 100755 --- a/eidolon.cabal +++ b/eidolon.cabal @@ -1,5 +1,5 @@ name: eidolon -version: 0.1.8.8 +version: 0.1.9.0 synopsis: Image gallery in Yesod homepage: https://eidolon.nek0.eu license: AGPL-3