Skip to content

Commit bb0b2df

Browse files
committed
add dependency bounds, update CHANGELOG
1 parent ea8d9e2 commit bb0b2df

5 files changed

Lines changed: 24 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Revision history for lion
22

3+
## 0.2.0.0 -- 2021-03-27
4+
5+
* Update core/memory/peripheral interface
6+
* Configurable ALU: choose between SB_MAC16 or generic (+) and (-)
7+
* Optimize branch path for better fMax
8+
39
## 0.1.0.0 -- 2021-02-28
410

511
* First version.

lion-formal/lion-formal.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ library
1616
hs-source-dirs: src
1717
default-language: Haskell2010
1818
build-depends:
19-
base >= 4.13 && < 4.15,
19+
base >= 4.13 && < 4.15,
2020
Cabal,
21-
clash-prelude >= 1.4 && < 1.5,
22-
lion >= 0.1 && < 0.2,
21+
clash-prelude >= 1.4 && < 1.5,
22+
lion >= 0.2 && < 0.3,
2323
ghc-typelits-natnormalise,
2424
ghc-typelits-extra,
2525
ghc-typelits-knownnat

lion-metric/lion-metric.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ library
1515
hs-source-dirs: src
1616
default-language: Haskell2010
1717
build-depends:
18-
base >= 4.13 && < 4.15,
18+
base >= 4.13 && < 4.15,
1919
Cabal,
2020
clash-prelude >= 1.4 && < 1.5,
21-
lion >= 0.1 && < 0.2,
21+
lion >= 0.2 && < 0.3,
2222
ghc-typelits-natnormalise,
2323
ghc-typelits-extra,
2424
ghc-typelits-knownnat

lion-soc/lion-soc.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ library
2020
hs-source-dirs: src
2121
default-language: Haskell2010
2222
build-depends:
23-
base >= 4.13 && < 4.15,
23+
base >= 4.13 && < 4.15,
2424
Cabal,
25-
clash-prelude >= 1.4 && < 1.5,
26-
generic-monoid,
27-
ice40-prim >= 0.3 && < 0.4,
25+
clash-prelude >= 1.4 && < 1.5,
26+
generic-monoid >= 0.1 && < 0.2,
27+
ice40-prim >= 0.3 && < 0.4,
2828
lens,
29-
lion >= 0.1 && < 0.2,
30-
mtl,
29+
lion >= 0.2 && < 0.3,
30+
mtl >= 2.2 && < 2.3,
3131
ghc-typelits-natnormalise,
3232
ghc-typelits-extra,
3333
ghc-typelits-knownnat

lion.cabal

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: lion
3-
version: 0.1.0.0
3+
version: 0.2.0.0
44
synopsis: RISC-V Core
55
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).
66
bug-reports: https://github.com/standardsemiconductor/lion/issues
@@ -27,13 +27,13 @@ library
2727
hs-source-dirs: src
2828
default-language: Haskell2010
2929
build-depends:
30-
base >= 4.13 && < 4.15,
30+
base >= 4.13 && < 4.15,
3131
Cabal,
32-
generic-monoid >= 0.1 && < 0.2,
33-
mtl,
34-
lens,
35-
ice40-prim >= 0.3 && < 0.4,
36-
clash-prelude >= 1.2.5 && < 1.5,
32+
generic-monoid >= 0.1 && < 0.2,
33+
mtl >= 2.2 && < 2.3,
34+
lens >= 4.19 && < 5.1,
35+
ice40-prim >= 0.3 && < 0.4,
36+
clash-prelude >= 1.2.5 && < 1.5,
3737
ghc-typelits-natnormalise,
3838
ghc-typelits-extra,
3939
ghc-typelits-knownnat

0 commit comments

Comments
 (0)