Skip to content

Commit

Permalink
Update to version 1.3.0, with the update to Haskell Stack LTS 22.23.
Browse files Browse the repository at this point in the history
  • Loading branch information
chungyc authored May 29, 2024
1 parent 6cb7b9b commit bd33154
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

See https://github.com/chungyc/ninetynine.

## v1.3.0

* Update to Haskell Stack LTS 22.23.

## v1.2.0

* No longer require the implementation of partial functions.
Expand Down
2 changes: 1 addition & 1 deletion ninetynine.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 2.2
-- see: https://github.com/sol/hpack

name: ninetynine
version: 1.2.0
version: 1.3.0
synopsis: Ninety-Nine Haskell Problems
description: Ninety-Nine Haskell Problems.
These are programming exercises for practice with [Haskell](https://www.haskell.org/).
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: ninetynine
version: 1.2.0
version: 1.3.0
github: "chungyc/ninetynine"
license: GPL-3.0-or-later
license-file: LICENSE
author: "Yoo Chung"
maintainer: "[email protected]"
copyright: "Copyright (C) 2023 Yoo Chung"
copyright: "Copyright (C) 2024 Yoo Chung"
homepage: "https://ninetynine.haskell.chungyc.org/"

extra-source-files:
Expand Down
1 change: 1 addition & 0 deletions src/Solutions/P78.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Some solutions to "Problems.P78" of Ninety-Nine Haskell "Problems".
module Solutions.P78 (collatz) where

import Control.Monad.Writer
import Data.Monoid (Sum(..))

{- | Starting from a positive integer \(n\),
we can have a sequence of numbers such that at each step,
Expand Down
1 change: 1 addition & 0 deletions src/Solutions/P79.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Some solutions to "Problems.P79" of Ninety-Nine Haskell "Problems".
-}
module Solutions.P79 (calculatePostfix) where

import Control.Monad (guard, mzero)
import Control.Monad.Identity
import Control.Monad.State
import Control.Monad.Trans.Maybe
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Resolver to choose a 'specific' stackage snapshot or a compiler version.
# A snapshot resolver dictates the compiler version and the set of packages
# to be used for project dependencies.
resolver: lts-21.24
resolver: lts-22.23

# User packages to be built.
packages:
Expand Down

0 comments on commit bd33154

Please sign in to comment.