Skip to content

Commit fed1ab1

Browse files
committed
chore(version): 0.3.3
1 parent f457ba1 commit fed1ab1

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
33

44
- - -
5+
## 0.3.3 - 2024-03-27
6+
#### Miscellaneous Chores
7+
- use c++20 and add llvm toolchain for linux ci tests (#184) - (f457ba1) - Austin Kelway
8+
9+
- - -
10+
511
## 0.3.2 - 2024-03-13
612
#### Bug Fixes
713
- codegen plugin target/path improvements (#182) - (f357d7f) - Ezekiel Warren

MODULE.bazel

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "ecsact_lang_cpp",
3-
version = "0.3.2",
3+
version = "0.3.3",
44
compatibility_level = 3,
55
)
66

@@ -9,8 +9,8 @@ bazel_dep(name = "bazel_skylib", version = "1.4.2")
99
bazel_dep(name = "ecsact_runtime", version = "0.5.0")
1010
bazel_dep(name = "rules_ecsact", version = "0.4.8")
1111
bazel_dep(name = "ecsact_codegen", version = "0.1.2")
12-
bazel_dep(name = "toolchains_llvm", version = "1.0.0", dev_dependency = True)
1312

13+
bazel_dep(name = "toolchains_llvm", version = "1.0.0", dev_dependency = True)
1414
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
1515
git_override(
1616
module_name = "hedron_compile_commands",
@@ -26,6 +26,9 @@ register_toolchains("@ecsact_toolchains//:all")
2626

2727
llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm", dev_dependency = True)
2828
llvm.toolchain(llvm_version = "17.0.6")
29-
3029
use_repo(llvm, "llvm_toolchain")
31-
register_toolchains("@llvm_toolchain//:all", dev_dependency = True)
30+
31+
register_toolchains(
32+
"@llvm_toolchain//:all",
33+
dev_dependency = True,
34+
)

0 commit comments

Comments
 (0)