Skip to content

Commit

Permalink
Release rules_haskell version 0.17
Browse files Browse the repository at this point in the history
Update module version to 0.17, rename modules in local registry and set version
in `start` script and `docs/haskell-use-cases`.
  • Loading branch information
avdv committed Oct 19, 2023
1 parent fac9d2a commit fd71c6b
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "rules_haskell",
version = "0.16",
version = "0.17",
)

bazel_dep(
Expand Down
6 changes: 3 additions & 3 deletions docs/haskell-use-cases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ rules_haskell. To use a released version, do the following::

http_archive(
name = "rules_haskell",
sha256 = "f7a228ef21c7976e42f0949b927f40d3381305d65e19585625eb6ce2c59116e9",
strip_prefix = "rules_haskell-0.16",
url = "https://github.com/tweag/rules_haskell/archive/refs/tags/v0.16.tar.gz",
sha256 = "cadd179a061e5459141439cf82241950650085afb46d45c69755353fa045c2a2",
strip_prefix = "rules_haskell-0.17",
url = "https://github.com/tweag/rules_haskell/archive/refs/tags/v0.17.tar.gz",
)

Picking a compiler
Expand Down
6 changes: 3 additions & 3 deletions examples/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "rules_haskell_examples",
version = "0.16",
version = "0.17",
)

bazel_dep(
Expand All @@ -9,11 +9,11 @@ bazel_dep(
)
bazel_dep(
name = "rules_haskell_nix",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_haskell",
version = "0.16",
version = "0.17",
)

# TODO
Expand Down
2 changes: 1 addition & 1 deletion registry/modules/rules_haskell/metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"homepage": "",
"maintainers": [],
"versions": ["0.16"],
"versions": ["0.17"],
"yanked_versions": []
}
2 changes: 1 addition & 1 deletion registry/modules/rules_haskell_nix/metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"homepage": "",
"maintainers": [],
"versions": ["0.16"],
"versions": ["0.17"],
"yanked_versions": []
}
4 changes: 2 additions & 2 deletions rules_haskell_nix/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module(
name = "rules_haskell_nix",
version = "0.16",
version = "0.17",
)

bazel_dep(
name = "rules_haskell",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_sh",
Expand Down
6 changes: 3 additions & 3 deletions rules_haskell_tests/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "rules_haskell_tests",
version = "0.16",
version = "0.17",
)

bazel_dep(
Expand All @@ -9,11 +9,11 @@ bazel_dep(
)
bazel_dep(
name = "rules_haskell_nix",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_haskell",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_license",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ module(

bazel_dep(
name = "rules_haskell_nix",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_haskell",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_nixpkgs_core",
Expand Down
6 changes: 3 additions & 3 deletions start
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ load(
# Download rules_haskell and make it accessible as "@rules_haskell".
http_archive(
name = "rules_haskell",
sha256 = "2a07b55c30e526c07138c717b0343a07649e27008a873f2508ffab3074f3d4f3",
strip_prefix = "rules_haskell-0.16",
url = "https://github.com/tweag/rules_haskell/archive/refs/tags/v0.16.tar.gz",
sha256 = "cadd179a061e5459141439cf82241950650085afb46d45c69755353fa045c2a2",
strip_prefix = "rules_haskell-0.17",
url = "https://github.com/tweag/rules_haskell/archive/refs/tags/v0.17.tar.gz",
)
load(
Expand Down
4 changes: 2 additions & 2 deletions tutorial/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ bazel_dep(
# toolchains are considered first
bazel_dep(
name = "rules_haskell_nix",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_haskell",
version = "0.16",
version = "0.17",
)
bazel_dep(
name = "rules_nixpkgs_core",
Expand Down

0 comments on commit fd71c6b

Please sign in to comment.