Skip to content

Commit

Permalink
Bump version to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
int-index committed Oct 1, 2023
1 parent b88c936 commit bc4fb07
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 23 deletions.
5 changes: 4 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Revision history for Happy

## Unreleased
## 2.0

The main focus of this release was modularizing Happy.

Expand All @@ -12,6 +12,9 @@ The main focus of this release was modularizing Happy.
- `happy-grammar`
- `happy-tabular`

* Partially revert the new bootstrapping system of 1.21.0 to mitigate
build issues.

## 1.21.0

The main focus of this release was revamping the build system and bootstrapping.
Expand Down
14 changes: 7 additions & 7 deletions happy.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: happy
version: 1.21.0
version: 2.0
license: BSD2
license-file: LICENSE
copyright: (c) Andy Gill, Simon Marlow
Expand Down Expand Up @@ -142,12 +142,12 @@ executable happy
array,
containers >= 0.4.2,
mtl >= 2.2.1,
happy-codegen-common == 1.21.0,
happy-grammar == 1.21.0,
happy-tabular == 1.21.0,
happy-frontend == 1.21.0,
happy-backend-lalr == 1.21.0,
happy-backend-glr == 1.21.0
happy-codegen-common == 2.0,
happy-grammar == 2.0,
happy-tabular == 2.0,
happy-frontend == 2.0,
happy-backend-lalr == 2.0,
happy-backend-glr == 2.0

default-language: Haskell98
default-extensions: CPP, MagicHash, FlexibleContexts, NamedFieldPuns
Expand Down
8 changes: 4 additions & 4 deletions packages/backend-glr/happy-backend-glr.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: happy-backend-glr
version: 1.21.0
version: 2.0
license: BSD2
license-file: LICENSE
copyright: (c) Andy Gill, Simon Marlow
Expand Down Expand Up @@ -49,9 +49,9 @@ library
Happy.Backend.GLR.ProduceCode
build-depends: base < 5,
array,
happy-codegen-common == 1.21.0,
happy-grammar == 1.21.0,
happy-tabular == 1.21.0
happy-codegen-common == 2.0,
happy-grammar == 2.0,
happy-tabular == 2.0

default-language: Haskell98
default-extensions: CPP, MagicHash, FlexibleContexts
Expand Down
8 changes: 4 additions & 4 deletions packages/backend-lalr/happy-backend-lalr.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: happy-backend-lalr
version: 1.21.0
version: 2.0
license: BSD2
license-file: LICENSE
copyright: (c) Andy Gill, Simon Marlow
Expand Down Expand Up @@ -49,9 +49,9 @@ library
Happy.Backend.LALR.ProduceCode
build-depends: base < 5,
array,
happy-codegen-common == 1.21.0,
happy-grammar == 1.21.0,
happy-tabular == 1.21.0
happy-codegen-common == 2.0,
happy-grammar == 2.0,
happy-tabular == 2.0

default-language: Haskell98
default-extensions: CPP, MagicHash, FlexibleContexts
Expand Down
2 changes: 1 addition & 1 deletion packages/codegen-common/happy-codegen-common.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: happy-codegen-common
version: 1.21.0
version: 2.0
license: BSD2
license-file: LICENSE
copyright: (c) Andy Gill, Simon Marlow
Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/happy-frontend.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: happy-frontend
version: 1.21.0
version: 2.0
license: BSD2
license-file: LICENSE
copyright: (c) Andy Gill, Simon Marlow
Expand Down Expand Up @@ -54,8 +54,8 @@ library
containers >= 0.4.2,
transformers >= 0.5.6.2,
mtl >= 2.2.2,
happy-codegen-common == 1.21.0,
happy-grammar == 1.21.0
happy-codegen-common == 2.0,
happy-grammar == 2.0

default-language: Haskell98
default-extensions: CPP, MagicHash, FlexibleContexts
Expand Down
2 changes: 1 addition & 1 deletion packages/grammar/happy-grammar.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: happy-grammar
version: 1.21.0
version: 2.0
license: BSD2
license-file: LICENSE
copyright: (c) Andy Gill, Simon Marlow
Expand Down
4 changes: 2 additions & 2 deletions packages/tabular/happy-tabular.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: happy-tabular
version: 1.21.0
version: 2.0
license: BSD2
license-file: LICENSE
copyright: (c) Andy Gill, Simon Marlow
Expand Down Expand Up @@ -47,7 +47,7 @@ library
build-depends: base < 5,
array,
containers >= 0.4.2,
happy-grammar == 1.21.0
happy-grammar == 2.0

default-language: Haskell98
default-extensions: CPP, MagicHash, FlexibleContexts, NamedFieldPuns
Expand Down

0 comments on commit bc4fb07

Please sign in to comment.