diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8c7f494 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + + + +## v0.2.0 (2022-06-09) +### Feature +* Support drill and filter on array indexes ([`518239d`](https://github.com/guilatrova/ast_selector/commit/518239de531b579adc96227f2d6789cbc33f599f)) +* Support deeper navigation and reference ([`a5bdf70`](https://github.com/guilatrova/ast_selector/commit/a5bdf7005bad92dec009115126f19775766874a3)) +* Support drilling to lists ([`b161f59`](https://github.com/guilatrova/ast_selector/commit/b161f59037324d7f4670b7d05e5d99f66398949e)) + +### Fix +* Run semantic release through poetry ([`5f9a58e`](https://github.com/guilatrova/ast_selector/commit/5f9a58e56f49c87772c8cb3c24698e7791e997c3)) + +### Documentation +* Fix pip install cmd ([`7ee6357`](https://github.com/guilatrova/ast_selector/commit/7ee63579ffd4d09dc7e5c49cd91be1f68e7bf801)) diff --git a/pyproject.toml b/pyproject.toml index 1d281fe..4e96f5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ast_selector" -version = "0.1.4" +version = "0.2.0" description = "Query AST elements by using CSS Selector-like syntax" authors = ["Guilherme Latrova "] license = "MIT" diff --git a/src/ast_selector/__init__.py b/src/ast_selector/__init__.py index 0f67870..1db63b0 100644 --- a/src/ast_selector/__init__.py +++ b/src/ast_selector/__init__.py @@ -2,5 +2,5 @@ from .main import AstSelector -__version__ = "0.1.4" +__version__ = "0.2.0" __all__ = ["AstSelector"]