Skip to content

Commit

Permalink
Update GitQL SDK and ClangQL Version
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Apr 26, 2024
1 parent afc347d commit 56aeaa7
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 46 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change Log
==========

Version 0.2.0 *(2024-04-26)*
-----------------------------

* Support query `name`, `class_name`, `return_type` for methods in structs or classes.
* Support query `is_template` option in Function model.
* Support query `is_static`, `is_const` option in Function model.
* Support query `is_method`, `is_variadic` option in Function model.
* Support query `is_virtual`, `is_pure_virtual` option in Function model.
* Support query `access_modifier` option in Function model.
* Support query global variables `name`, `type` and `is_volatile`

Version 0.1.0 *(2024-04-05)*
-----------------------------

Expand Down
83 changes: 42 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "clangql"
authors = ["AmrDeveloper"]
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "A tool to run SQL-like query on your C/C++ Abstract syntax tree"
license = "MIT"
Expand All @@ -13,10 +13,10 @@ categories = ["command-line-utilities"]
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]

[dependencies]
gitql-cli = "0.17.0"
gitql-ast = "0.15.0"
gitql-parser = "0.16.0"
gitql-engine = "0.17.0"
gitql-cli = "0.18.0"
gitql-ast = "0.16.0"
gitql-parser = "0.17.0"
gitql-engine = "0.18.0"
lazy_static = "1.4.0"
atty = "0.2.14"
clang-sys = "1.7.0"

0 comments on commit 56aeaa7

Please sign in to comment.