Skip to content

Commit 56aeaa7

Browse files
committed
Update GitQL SDK and ClangQL Version
1 parent afc347d commit 56aeaa7

File tree

3 files changed

+58
-46
lines changed

3 files changed

+58
-46
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change Log
22
==========
33

4+
Version 0.2.0 *(2024-04-26)*
5+
-----------------------------
6+
7+
* Support query `name`, `class_name`, `return_type` for methods in structs or classes.
8+
* Support query `is_template` option in Function model.
9+
* Support query `is_static`, `is_const` option in Function model.
10+
* Support query `is_method`, `is_variadic` option in Function model.
11+
* Support query `is_virtual`, `is_pure_virtual` option in Function model.
12+
* Support query `access_modifier` option in Function model.
13+
* Support query global variables `name`, `type` and `is_volatile`
14+
415
Version 0.1.0 *(2024-04-05)*
516
-----------------------------
617

Cargo.lock

Lines changed: 42 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "clangql"
33
authors = ["AmrDeveloper"]
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
description = "A tool to run SQL-like query on your C/C++ Abstract syntax tree"
77
license = "MIT"
@@ -13,10 +13,10 @@ categories = ["command-line-utilities"]
1313
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]
1414

1515
[dependencies]
16-
gitql-cli = "0.17.0"
17-
gitql-ast = "0.15.0"
18-
gitql-parser = "0.16.0"
19-
gitql-engine = "0.17.0"
16+
gitql-cli = "0.18.0"
17+
gitql-ast = "0.16.0"
18+
gitql-parser = "0.17.0"
19+
gitql-engine = "0.18.0"
2020
lazy_static = "1.4.0"
2121
atty = "0.2.14"
2222
clang-sys = "1.7.0"

0 commit comments

Comments
 (0)