Skip to content

Commit

Permalink
Prep release v0.4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-warren committed Aug 4, 2024
1 parent c268fc3 commit 4b86f7e
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
2 changes: 2 additions & 0 deletions opencascade-hs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to the

## Unreleased

## 0.4.0.0

- Add `OpenCascade.BRepBuilderAPI.MakeVertex`
- Add `OpenCascade.BRepBuilderAPI.MakeWire.vertex`
- Add `OpenCascade.BRepOffsetAPI.ThruSections`
Expand Down
2 changes: 1 addition & 1 deletion opencascade-hs/opencascade-hs.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: opencascade-hs
version: 0.3.0.1
version: 0.4.0.0
synopsis: Thin Wrapper for the OpenCASCADE CAD Kernel
description: Please see the README on GitHub at <https://github.com/joe-warren/opencascade-hs#readme>
category: Graphics,FFI
Expand Down
6 changes: 3 additions & 3 deletions package-defaults.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_version: &version "0.3.0.1"
_opencascade-hs-bound: &opencascade-hs-bound "opencascade-hs ^>=0.3.0.1"
_waterfall-cad-bound: &waterfall-cad-bound "waterfall-cad ^>=0.3.0.1"
_version: &version "0.4.0.0"
_opencascade-hs-bound: &opencascade-hs-bound "opencascade-hs ^>=0.4.0.0"
_waterfall-cad-bound: &waterfall-cad-bound "waterfall-cad ^>=0.4.0.0"
_ghc_options: &ghc-options
- -Wall
- -Werror=compat
Expand Down
3 changes: 3 additions & 0 deletions waterfall-cad-examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to the

## Unreleased


## 0.4.0.0

- Add LoftExample

## 0.3.0.1
Expand Down
10 changes: 5 additions & 5 deletions waterfall-cad-examples/waterfall-cad-examples.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: waterfall-cad-examples
version: 0.3.0.1
version: 0.4.0.0
synopsis: Examples for Waterfall CAD, a Declarative CAD/Solid Modeling Library
description: Please see the README on GitHub at <https://github.com/joe-warren/opencascade-hs#readme>
category: Graphics
Expand Down Expand Up @@ -48,11 +48,11 @@ library
base >=4.7 && <5
, lens ==5.*
, linear >=1.21 && <2
, opencascade-hs >=0.3.0.1 && <0.4
, opencascade-hs >=0.4.0.0 && <0.5
, optparse-applicative >=0.17 && <0.19
, parsec ==3.1.*
, parser-combinators >=1.2 && <1.4
, waterfall-cad >=0.3.0.1 && <0.4
, waterfall-cad >=0.4.0.0 && <0.5
default-language: Haskell2010

executable waterfall-cad-examples
Expand All @@ -66,10 +66,10 @@ executable waterfall-cad-examples
base >=4.7 && <5
, lens ==5.*
, linear >=1.21 && <2
, opencascade-hs >=0.3.0.1 && <0.4
, opencascade-hs >=0.4.0.0 && <0.5
, optparse-applicative >=0.17 && <0.19
, parsec ==3.1.*
, parser-combinators >=1.2 && <1.4
, waterfall-cad >=0.3.0.1 && <0.4
, waterfall-cad >=0.4.0.0 && <0.5
, waterfall-cad-examples
default-language: Haskell2010
2 changes: 2 additions & 0 deletions waterfall-cad/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to the

## Unreleased

## 0.4.0.0

- Add `Waterfall.Loft` containing `loft` and `pointedLoft`
- Change the `Monoid` instance for `Path` and `Path2D`, so that in the expression `a <> b` a line is added between the end of `a` and the start of `b`, unless these points are coincident.
- Reverse the order in which Path.pathFrom adds path segments; required by the new Monoid behaviour.
Expand Down
4 changes: 2 additions & 2 deletions waterfall-cad/waterfall-cad.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: waterfall-cad
version: 0.3.0.1
version: 0.4.0.0
synopsis: Declarative CAD/Solid Modeling Library
description: Please see the README on GitHub at <https://github.com/joe-warren/opencascade-hs#readme>
category: Graphics
Expand Down Expand Up @@ -67,7 +67,7 @@ library
, lattices >=2.0 && <3
, lens ==5.*
, linear >=1.21 && <2
, opencascade-hs >=0.3.0.1 && <0.4
, opencascade-hs >=0.4.0.0 && <0.5
, primitive >=0.7 && <0.10
, resourcet >=1.2 && <1.4
default-language: Haskell2010

0 comments on commit 4b86f7e

Please sign in to comment.