14
0
forked from pool/python-textX

- update to version 2.2.0:

- Added:
  - Initial docs for Jinja code generator support (from
    [textX-jinja](https://github.com/textX/textX-jinja)) ([#264]).
  - Analyzing grammars programmatically as plain textX models
    (`grammar_model_from_str/file`) ([#235])
  - Initial `startproject` scaffolding (from
    [textX-dev](https://github.com/textX/textX-dev)) docs ([#234])
  - Generator helper functions `get_output_filename` and `gen_file` ([#233])
  - `textx version` command ([#219])
  - Versions for languages/packages in `list-languages` and `list-generators`
    commands ([#228])
  - Added the ability to specify extra parameters during `model_from_file` or
    `model_from_str` and to define which extra parameters exist in the
    meta-model ([#243]).
 - Fixed:
  - Fixed several instances of invalid truthiness checking. Thanks
    markusschmaus@GitHub ([#250])
  - Fixed applying multiple grammar rule modifiers ([#246])
  - Fixed exception on calling `check` CLI command with relative path name.
  - Fixed return value of textx generate and check commands: we return a failure
    on error now ([#222])
  - Fixed type checking for references to builtin elements ([#218])
 - Changed:
  - User classes can now be immutable (e.g. `attr.frozen`) or can use
    `__slots__`. Thanks markusschmaus@GitHub ([#256, #260, #261])
  - Cleanup of setup configuration and install scripts [#231]
  - Dot/PlantUML rendering of meta-models: remove rendering of base types,
    improve rendering of required/optional, render match rules as a single
    table. ([#225])

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-textX?expand=0&rev=27
This commit is contained in:
Sebastian Wagner
2020-08-08 12:01:33 +00:00
committed by Git OBS Bridge
parent 8959b67229
commit 4d535fb634
5 changed files with 72 additions and 4 deletions

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Thu Aug 6 13:16:43 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>
- update to version 2.2.0:
- Added:
- Initial docs for Jinja code generator support (from
[textX-jinja](https://github.com/textX/textX-jinja)) ([#264]).
- Analyzing grammars programmatically as plain textX models
(`grammar_model_from_str/file`) ([#235])
- Initial `startproject` scaffolding (from
[textX-dev](https://github.com/textX/textX-dev)) docs ([#234])
- Generator helper functions `get_output_filename` and `gen_file` ([#233])
- `textx version` command ([#219])
- Versions for languages/packages in `list-languages` and `list-generators`
commands ([#228])
- Added the ability to specify extra parameters during `model_from_file` or
`model_from_str` and to define which extra parameters exist in the
meta-model ([#243]).
- Fixed:
- Fixed several instances of invalid truthiness checking. Thanks
markusschmaus@GitHub ([#250])
- Fixed applying multiple grammar rule modifiers ([#246])
- Fixed exception on calling `check` CLI command with relative path name.
- Fixed return value of textx generate and check commands: we return a failure
on error now ([#222])
- Fixed type checking for references to builtin elements ([#218])
- Changed:
- User classes can now be immutable (e.g. `attr.frozen`) or can use
`__slots__`. Thanks markusschmaus@GitHub ([#256, #260, #261])
- Cleanup of setup configuration and install scripts [#231]
- Dot/PlantUML rendering of meta-models: remove rendering of base types,
improve rendering of required/optional, render match rules as a single
table. ([#225])
- Allow passing kwargs in `metamodel_for_file/language` registration API
calls. ([#224])
-------------------------------------------------------------------
Mon May 18 09:10:29 UTC 2020 - Petr Gajdos <pgajdos@suse.com>