Skip to content

Commit 5bdcde6

Browse files
committed
chore(version): 0.3.0
1 parent ac6e02d commit 5bdcde6

File tree

2 files changed

+42
-6
lines changed

2 files changed

+42
-6
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
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.0 - 2024-03-26
6+
#### Bug Fixes
7+
- multiple methods in recipe being detected (#52) - (82f908a) - Ezekiel Warren
8+
- disable color text output on windows (#53) - (dd37ac4) - Ezekiel Warren
9+
- add missing SDK includes (#49) - (ef84dac) - Ezekiel Warren
10+
#### Features
11+
- build receipe can now fetch sources (#71) - (d6d2b18) - Ezekiel Warren
12+
- export dylib (#50) - (9aa13ab) - Ezekiel Warren
13+
- coloured text output (#51) - (65523b8) - Ezekiel Warren
14+
#### Miscellaneous Chores
15+
- **(deps)** update jidicula/clang-format-action action to v4.11.0 (#5) - (ac6e02d) - renovate[bot]
16+
- **(deps)** update escact repositories (#40) - (91ce484) - renovate[bot]
17+
- **(deps)** update dependency platforms to v0.0.9 (#59) - (02b3a8a) - renovate[bot]
18+
- **(deps)** update dependency bazel_skylib to v1.5.0 (#60) - (de35022) - renovate[bot]
19+
- **(deps)** update actions/cache action to v4 (#67) - (590b4f5) - renovate[bot]
20+
- **(deps)** update dependency nlohmann_json to v3.11.3 (#63) - (3fce1be) - renovate[bot]
21+
- **(deps)** update dependency rules_pkg to v0.10.1 (#66) - (a6a6d25) - renovate[bot]
22+
- **(deps)** update hedron_compile_commands digest to eca42c6 (#62) - (1567b15) - renovate[bot]
23+
- **(deps)** update com_grail_bazel_toolchain digest to ade23e0 (#61) - (c2258f4) - renovate[bot]
24+
- **(deps)** update com_grail_bazel_toolchain digest to 7500623 (#58) - (c25491f) - renovate[bot]
25+
- **(deps)** update com_grail_bazel_toolchain digest to 1e5f3c6 (#48) - (5f0f7d2) - renovate[bot]
26+
- **(deps)** update hedron_compile_commands digest to ac6411f (#47) - (66c43a4) - renovate[bot]
27+
- **(deps)** update com_grail_bazel_toolchain digest to 0a9feb7 (#46) - (61f8c34) - renovate[bot]
28+
- enable merge queue - (832cbd5) - Ezekiel Warren
29+
- fix typos - (2cf8f73) - Ezekiel Warren
30+
- remove rules_ecsact dependency (#68) - (7239e29) - Ezekiel Warren
31+
- remove unneeded linux bzl flag - (4c3d26b) - Ezekiel Warren
32+
- bzlmod updates - (8e52fe0) - Ezekiel Warren
33+
- more methods in build recipe test (#54) - (51eb74a) - Ezekiel Warren
34+
35+
- - -
36+
537
## 0.2.3 - 2023-10-06
638
#### Bug Fixes
739
- release was using wrong target/path - (8196a98) - Ezekiel Warren

MODULE.bazel

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module(
22
name = "ecsact_cli",
3-
version = "0.2.3",
4-
compatibility_level = 2,
3+
version = "0.3.0",
4+
compatibility_level = 3,
55
)
66

77
bazel_dep(name = "rules_cc", version = "0.0.9")
@@ -20,10 +20,11 @@ bazel_dep(name = "docopt.cpp", version = "0.6.2")
2020
bazel_dep(name = "boost.process", version = "1.83.0.bzl.2")
2121
bazel_dep(name = "boost.algorithm", version = "1.83.0.bzl.1")
2222
bazel_dep(name = "boost.url", version = "1.83.0.bzl.2")
23+
2324
bazel_dep(name = "toolchains_llvm", version = "1.0.0", dev_dependency = True)
2425
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
25-
bazel_dep(name = "yaml-cpp")
2626

27+
bazel_dep(name = "yaml-cpp")
2728
git_override(
2829
module_name = "yaml-cpp",
2930
commit = "37f1b8b8c9e5172ff3a79a3d5fdbb87f2994842b",
@@ -32,12 +33,15 @@ git_override(
3233

3334
git_override(
3435
module_name = "hedron_compile_commands",
35-
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
3636
commit = "204aa593e002cbd177d30f11f54cff3559110bb9",
37+
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
3738
)
3839

3940
llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm", dev_dependency = True)
4041
llvm.toolchain(llvm_version = "17.0.6")
41-
4242
use_repo(llvm, "llvm_toolchain")
43-
register_toolchains("@llvm_toolchain//:all", dev_dependency = True)
43+
44+
register_toolchains(
45+
"@llvm_toolchain//:all",
46+
dev_dependency = True,
47+
)

0 commit comments

Comments
 (0)