1
1
mirror of https://github.com/Yvee1/hascard.git synced 2024-10-26 07:41:15 +03:00

Bump version and add version constraints to deps

This commit is contained in:
Steven van den Broek 2020-07-20 21:08:28 +02:00
parent 7b680330ec
commit fccf59d1e7
2 changed files with 32 additions and 18 deletions

View File

@ -1,3 +1,17 @@
# Changelog for hascard
## Unreleased changes
## 0.1.1.0
New:
- Add nix build support (by @srid)
- Recently used decks are now ordered by most recent first
- Recently used decks now have unique names. Previously only the filename was shown, but now path is shown up to unique name
Fixed bugs:
- Failed parsing of settings file now results in default settings instead of error
- After selecting a file from system, the card selector had to be refreshed before the file appeared in the recently selected decks list. The file is now present immediately
- Directly selecting a card via the CLI now also adds it to the recents list
- Selecting a card via the CLI now returns an error if it has a different filetype than '.txt'. If no filetype is given, '.txt' is assumed.
## 0.1.0.0
Initial release

View File

@ -1,5 +1,5 @@
name: hascard
version: 0.1.0.0
version: 0.1.1.0
github: "Yvee1/hascard"
license: BSD3
author: "Steven van den Broek"
@ -17,25 +17,25 @@ category: Application
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Hascard is a text-based user interface for reviewing notes using 'flashcards'. Cards are written in markdown-like syntax. Please see the README file on GitHub at <https://github.com/Yvee1/hascard#readme> for more information.
description: Hascard is a text-based user interface for reviewing notes using flashcards. Cards are written in markdown-like syntax. Please see the README file on GitHub at <https://github.com/Yvee1/hascard#readme> for more information.
dependencies:
- base >= 4.7 && < 5
- brick >= 0.52
- word-wrap
- vty
- microlens-platform
- parsec
- containers
- directory
- text
- vector
- filepath
- microlens
- process
- optparse-applicative
- ordered-containers
- strict
- brick >= 0.52.1 && < 0.56
- containers > 0.6.0 && < 0.7
- directory >= 1.3.3 && < 1.4
- filepath >= 1.4.2 && < 1.5
- microlens >= 0.4.11 && < 0.5
- microlens-platform >= 0.4.1 && < 0.5
- optparse-applicative >= 0.15.1 && < 0.16
- ordered-containers >= 0.2.2 && < 0.3
- parsec >= 3.1.13 && < 3.2
- process >= 1.6.5 && < 1.7
- strict >= 0.3.2 && < 0.4
- text >= 1.2.3 && < 1.3
- vector >= 0.12.0 && < 0.13
- vty >= 5.28.2 && < 5.31
- word-wrap >= 0.4.1 && < 0.5
library:
source-dirs: src