Skip to content

Commit 0037d94

Browse files
committed
Prepare release 0.19
1 parent ff51c36 commit 0037d94

File tree

15 files changed

+41
-21
lines changed

15 files changed

+41
-21
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/).
66

7+
## [0.19] 2024-02-5
8+
9+
[0.19]: https://github.com/tweag/rules_haskell/compare/v0.18...v0.19
10+
11+
### Highlights
12+
13+
* Fix toolchain libraries creation when using `ghcWithPackages` (https://github.com/tweag/rules_haskell/pull/2098)
14+
15+
### Added
16+
17+
* Ghc 9.6.4 (https://github.com/tweag/rules_haskell/pull/2108)
18+
19+
### Changed
20+
21+
* Upgrade `rules_sh` to `0.4.0` (https://github.com/tweag/rules_haskell/pull/2103)
22+
23+
### Fixed
24+
25+
* Add `darwin_x86_64` to the `is_darwin` check (https://github.com/tweag/rules_haskell/pull/2109/files)
26+
727
## [0.18] 2023-12-21
828

929
[0.18]: https://github.com/tweag/rules_haskell/compare/v0.17...v0.18

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "rules_haskell",
3-
version = "0.18",
3+
version = "0.19",
44
)
55

66
bazel_dep(

docs/haskell-use-cases.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ rules_haskell. To use a released version, do the following::
2828

2929
http_archive(
3030
name = "rules_haskell",
31-
sha256 = "d1f0e1bd4f1d5e248b2882bfdc7c31a146112f9d85b9d2f0ef77e78d02ecba45",
32-
strip_prefix = "rules_haskell-0.18",
33-
url = "https://github.com/tweag/rules_haskell/releases/download/v0.18/rules_haskell-0.18.tar.gz",
31+
# sha256 = "d1f0e1bd4f1d5e248b2882bfdc7c31a146112f9d85b9d2f0ef77e78d02ecba45",
32+
strip_prefix = "rules_haskell-0.19",
33+
url = "https://github.com/tweag/rules_haskell/releases/download/v0.19/rules_haskell-0.19.tar.gz",
3434
)
3535

3636
Picking a compiler

examples/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ bazel_dep(
99
)
1010
bazel_dep(
1111
name = "rules_haskell_nix",
12-
version = "0.18",
12+
version = "0.19",
1313
)
1414
bazel_dep(
1515
name = "rules_haskell",
16-
version = "0.18",
16+
version = "0.19",
1717
)
1818

1919
# TODO
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"homepage": "",
33
"maintainers": [],
4-
"versions": ["0.18"],
4+
"versions": ["0.19"],
55
"yanked_versions": []
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"homepage": "",
33
"maintainers": [],
4-
"versions": ["0.18"],
4+
"versions": ["0.19"],
55
"yanked_versions": []
66
}

0 commit comments

Comments
 (0)