Skip to content

chore(main): release 1.2.0 #136

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Conversation

robertoraggi
Copy link
Owner

🤖 I have created a release beep boop

1.2.0 (2023-08-22)

Features

  • js: Add TokenKind and Token.getKind() (f1f11a8)
  • js: Added ASTCursor (146b166)
  • json: Improved support to convert the AST to JSON (d15d466)
  • js: Use rollup to build the JavaScript bindings. (b99eb55)

Bug Fixes

  • Add APIs to set/get the current working directory (d0e7328)
  • Add AST for designated initializers (f36c3f4)
  • Add AST for the C++ attributes (aedc6a7)
  • Add AST node for underlying type specifier (c716cc0)
  • Add AST node for using enum declaration (bf5f22a)
  • Add cxx-gen-ast (4030a30)
  • Add decltype(auto) type (2a8ef93)
  • Add missing attributes to the enumerator AST node (bd2c9cd)
  • Add option to install the WASI sysroot (301700a)
  • Add option to specify the path to the wasi sysroot (a642d6b)
  • Add structured binding declaration AST nodes (3cbbc6a)
  • Add support for Xcode 14 (a8896dd)
  • Add TemplateParameterList (6ee556c)
  • Add wasm32-wasi toolchain definitions (2656bc7)
  • Build the emscripten bindings with EXPORT_ES6=1 (#106) (91926d7)
  • Build the emscripten bindings with WASM_BIGINT=1 (4c4e4c9)
  • Build using wasm-sdk (1f9bb71)
  • Build when C++ exceptions are not available (8fb8cca)
  • Build with emscripten 3.1.4 (4751aa7)
  • ci: Add support for multi-config cmake projects (4ae48c3)
  • ci: Enable release-please action (95245b0)
  • Classify int64 and int128 integer types (c40a7fc)
  • Clean up parsing of template declarations (99a45ae)
  • cli: Add -fsyntax-only to the cli (50332b2)
  • cli: Tag the code generation options as experimental (33439bc)
  • cmake: Add cmake install targets (b1e0853)
  • Create symbols for the template type parameters (9566308)
  • docs: Add example to README.md (255ba0b)
  • docs: Update the example code in the README.md file (459e837)
  • Dump the AST in plain text instead of JSON (ec19f4f)
  • Encode common literals (c8c3d84)
  • Encode source locations (58f7719)
  • Expose the Lexer API to TypeScript (1982d22)
  • Expose the preprocessor API to TypeScript (90e1f8a)
  • Expose TranslationUnit to TypeScript (7792714)
  • Implement __has_include_next (3d59a07)
  • Import wasi sysroot as an external dependency (414e699)
  • Initial work on the flatbuffers based serializer (#89) (740e678)
  • ir: Generate code for the logical_or expressions (c1c0131)
  • js: Add an example showing how to check the syntax of a C++ document (3568e92)
  • js: Add missing .js extension in import directive (9a48ade)
  • js: Build the npm package using emsdk 2.0.34 (10e384e)
  • js: Build with NO_DYNAMIC_EXECUTION to allow using the library in trusted browser environments (97eb589)
  • js: Export the symbols defined in Token.js (7d68898)
  • js: Extend ASTSlot to return the kind and number of slots (4d3f313)
  • js: Made AST.getEndLocation() inclusive (5849ef3)
  • lexer: Scan the characters using the UTF-8 unchecked API (654e227)
  • Link the wasi sysroot in the build directory (e82a63d)
  • Link with the LLVM libraries (0948526)
  • Merge adjacent string literals (80d5b9f)
  • Modernize the code (9ea5f41)
  • Optimize the size of the wasi binary (ac3dd33)
  • Parse of class virt specifiers (97cb51e)
  • Parse of inline for namespace definitions (80a34cf)
  • parser: Add AST nodes for unary and binary type traits (3c76fa3)
  • parser: Add checked/setChecked to the AST nodes (52501b5)
  • parser: Add classes to represent the utf string literals (ec3575e)
  • parser: Add placeholder types (da8de74)
  • parser: Add support for the __is_same_as built-in function (f80aa30)
  • parser: Add support for type aliases (6934355)
  • parser: Add symbol printer (f65b25c)
  • parser: Clean up Type (feed0ae)
  • parser: Create AST for modules (ce61309)
  • parser: Create AST for qualified type names (cd6c437)
  • parser: Create AST for simple for-range declarations (3e51ae7)
  • parser: Create AST node for built-in type traits (5b7b0e3)
  • parser: Create symbols for the template declarations (0da8b46)
  • parser: Create the AST for concept requirements (5600bb4)
  • parser: Create the AST for requires-clause (23aa6a3)
  • parser: Create the AST of using directives (d43c447)
  • parser: Fix sizeof of bool type (46041b8)
  • parser: Fix parsing of parameters in template declarations (1dc66ce)
  • parser: Fix parsing of placeholder type specifiers (3b3f273)
  • parser: Fix the type of logical expressions (c9258dc)
  • parser: Fix type of nullptr literals (3e8b8be)
  • parser: Implemented __is_arithmetic (3e0c377)
  • parser: Implemented __is_compound (37b90ee)
  • parser: Implemented __is_floating_point (a165026)
  • parser: Implemented __is_function__ (4d3e5da)
  • parser: Implemented __is_fundamental (4ef0374)
  • parser: Implemented __is_integral (1891675)
  • parser: Implemented __is_lvalue_reference, __is_rvalue_reference and __is_reference (d148471)
  • parser: Implemented __is_member_object_pointer (eeeece2)
  • parser: Implemented __is_object (b60f382)
  • parser: Implemented __is_scalar (52d64d3)
  • parser: Implemented is_const and is_volatile type traits (918a680)
  • parser: Implemented the __is_class and the __is_union type traits (bae22f3)
  • parser: Implemented the __is_enum and the __is_scoped_enum type traits (f9a05f2)
  • parser: Implemented the __is_null_pointer type traits (1a4837f)
  • parser: Implemented the __is_pointer type traits (5f62b9a)
  • parser: Implemented the __is_signed and the __is_unsigned type traits (1f23b9f)
  • parser: Implemented the __is_void type traits (951b03a)
  • parser: Initial support for sizeof and alignof expressions (bd6a255)
  • parser: Initial support for the decltype specifier (a24978c)
  • parser: Parse initialized function pointers (00fb809)
  • parser: Remove qualifiers from pointer type (e5f56c2)
  • parser: Resolve type names (798f475)
  • parser: Set type of conditional expressions (bcf8776)
  • parser: Store the AST of the template parameters (f0da7a0)
  • parser: Store the location of the export token of compound export declarations (81a4bfd)
  • parser: Store the location of the if-token in the AST (050a877)
  • parser: Support alternative operator spelling (eab8b86)
  • parser: Test for invalid source locations (878a4aa)
  • parser: Update the system search paths of the mocOS toolchain (85d9226)
  • parser: Validate the reported diagnostic messages (950f1d1), closes #38
  • Path to macOS toolchain (f5078d6)
  • preproc: Access the hidesets using transparent comparisons (96b484d)
  • preproc: Add support for comment handlers. (95c5f08)
  • preproc: Add support for the COUNTER built-in macro (ecf2be8)
  • preproc: Add support for the DATE and TIME built-in macros (a0015a7)
  • preproc: Add support for the FILE built-in macro (23be3a2)
  • preproc: Add support for the LINE built-in macro (ac7abf9)
  • preproc: Allow multiple definitions of the same macro (2927a6e)
  • preproc: Avoid resolving files when access to the fs is not allowed (d5d74b7)
  • preproc: Fix macro redefinition (9d5b07f)
  • preproc: Output GNU stile output directives (4a97d38)
  • preproc: Reduced the number of the temporary tokens (d092959)
  • preproc: Remove newline from the diagnostic message raised from #warning directives (a708e3c)
  • preproc: Trim space characters at the end of the text lines (03e2518)
  • Pretty print the JSON output AST (70d8119)
  • Print array types (a9ae0d2)
  • Print of const pointers (f7b2be8)
  • Print of function types (72d6c30)
  • Print TokenKind in AST dump (0583d39)
  • Reduce size of the emscriten wasm binary (3122c4d)
  • Remove filesystem from the public API (cac00e3)
  • Removed TypenamePackTypeParameterAST (2b7989a)
  • Renamed -fserialize-ast to -emit-ast (ea24578)
  • Represent intiializers as expressions in the AST (629ca3c)
  • Restructured the code base (9e405a7)
  • Serialize the identifiers (c430188)
  • Set access and virt specifier to the base specifier ast nodes (613a070)
  • Set access specifier of access declaration AST nodes (dc7a545)
  • Set class key of class specifier AST nodes (f610253)
  • Set class key of elaborated type specifiers (a8db107)
  • Set location of the atomic type specifier (8d8e07b)
  • Set the name of ctor member initializers (35fdf21)
  • stddef.h: add missing typedefs (3ea986f)
  • Store the namespace name in the AST (5df694b)
  • Store the value of the boolean literals in the AST (a2fbad8)
  • Temporary workaround to parse post increments #118 (29611ee)
  • Use the utf8 unchecked api (328ce98)

This PR was generated with Release Please. See documentation.

@robertoraggi robertoraggi deleted the release-please--branches--main--components--cplusplus branch August 22, 2023 16:22
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Comment handler to verify the diagnostic messages
1 participant