Skip to content

Commit

Permalink
add dependency bounds, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
dopamane committed Mar 27, 2021
1 parent ea8d9e2 commit bb0b2df
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 18 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Revision history for lion

## 0.2.0.0 -- 2021-03-27

* Update core/memory/peripheral interface
* Configurable ALU: choose between SB_MAC16 or generic (+) and (-)
* Optimize branch path for better fMax

## 0.1.0.0 -- 2021-02-28

* First version.
Expand Down
6 changes: 3 additions & 3 deletions lion-formal/lion-formal.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.13 && < 4.15,
base >= 4.13 && < 4.15,
Cabal,
clash-prelude >= 1.4 && < 1.5,
lion >= 0.1 && < 0.2,
clash-prelude >= 1.4 && < 1.5,
lion >= 0.2 && < 0.3,
ghc-typelits-natnormalise,
ghc-typelits-extra,
ghc-typelits-knownnat
Expand Down
4 changes: 2 additions & 2 deletions lion-metric/lion-metric.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.13 && < 4.15,
base >= 4.13 && < 4.15,
Cabal,
clash-prelude >= 1.4 && < 1.5,
lion >= 0.1 && < 0.2,
lion >= 0.2 && < 0.3,
ghc-typelits-natnormalise,
ghc-typelits-extra,
ghc-typelits-knownnat
Expand Down
12 changes: 6 additions & 6 deletions lion-soc/lion-soc.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.13 && < 4.15,
base >= 4.13 && < 4.15,
Cabal,
clash-prelude >= 1.4 && < 1.5,
generic-monoid,
ice40-prim >= 0.3 && < 0.4,
clash-prelude >= 1.4 && < 1.5,
generic-monoid >= 0.1 && < 0.2,
ice40-prim >= 0.3 && < 0.4,
lens,
lion >= 0.1 && < 0.2,
mtl,
lion >= 0.2 && < 0.3,
mtl >= 2.2 && < 2.3,
ghc-typelits-natnormalise,
ghc-typelits-extra,
ghc-typelits-knownnat
Expand Down
14 changes: 7 additions & 7 deletions lion.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: lion
version: 0.1.0.0
version: 0.2.0.0
synopsis: RISC-V Core
description: Lion is a formally verified, 5-stage pipeline [RISC-V](https://riscv.org) core. Lion targets the [VELDT FPGA development board](https://standardsemiconductor.com) and is written in Haskell using [Clash](https://clash-lang.org).
bug-reports: https://github.com/standardsemiconductor/lion/issues
Expand All @@ -27,13 +27,13 @@ library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.13 && < 4.15,
base >= 4.13 && < 4.15,
Cabal,
generic-monoid >= 0.1 && < 0.2,
mtl,
lens,
ice40-prim >= 0.3 && < 0.4,
clash-prelude >= 1.2.5 && < 1.5,
generic-monoid >= 0.1 && < 0.2,
mtl >= 2.2 && < 2.3,
lens >= 4.19 && < 5.1,
ice40-prim >= 0.3 && < 0.4,
clash-prelude >= 1.2.5 && < 1.5,
ghc-typelits-natnormalise,
ghc-typelits-extra,
ghc-typelits-knownnat
Expand Down

0 comments on commit bb0b2df

Please sign in to comment.