Skip to content

Commit

Permalink
Release 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Apr 2, 2023
1 parent 21f6d3a commit 6f7f224
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 24 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,33 @@ antsibull-docs-parser -- Python library for processing Ansible documentation mar
.. contents:: Topics


v0.2.0
======

Release Summary
---------------

New major release that increases compatibility with the `TypeScript code in antsibull-docs-ts <https://github.com/ansible-community/antsibull-docs-ts>`__.

Minor Changes
-------------

- Add strict mode for parsing (https://github.com/ansible-community/antsibull-docs-parser/pull/15).
- Add support for ansible-doc like text output (https://github.com/ansible-community/antsibull-docs-parser/pull/17).
- Add support for semantic markup in roles (https://github.com/ansible-community/antsibull-docs-parser/pull/9).
- Allow to add markup source to every paragraph part (https://github.com/ansible-community/antsibull-docs-parser/pull/18).
- Can switch between error messages containing a shortened version of the faulty markup or the full faulty markup command (https://github.com/ansible-community/antsibull-docs-parser/pull/19).
- Create script to update/extend the test vectors automatically (https://github.com/ansible-community/antsibull-docs-parser/pull/16).

Breaking Changes / Porting Guide
--------------------------------

- All DOM named tuples now have a ``source`` entry before ``type`` (https://github.com/ansible-community/antsibull-docs-parser/pull/18).
- By default, the error messages now contain the full faulty markup command (https://github.com/ansible-community/antsibull-docs-parser/pull/19).
- Extend ``OptionNamePart`` and ``ReturnValuePart`` named tuples by adding ``entrypoint`` after ``plugin`` (https://github.com/ansible-community/antsibull-docs-parser/pull/9).
- Modify ``LinkProvider.plugin_option_like_link`` signature to include a new argument ``entrypoint`` after ``plugin`` (https://github.com/ansible-community/antsibull-docs-parser/pull/9).
- ``CommandParser.parse`` has a new ``source`` parameter (https://github.com/ansible-community/antsibull-docs-parser/pull/18).

v0.0.1
======

Expand Down
30 changes: 30 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,33 @@ releases:
fragments:
- 0.0.1.yml
release_date: '2023-03-21'
0.2.0:
changes:
breaking_changes:
- All DOM named tuples now have a ``source`` entry before ``type`` (https://github.com/ansible-community/antsibull-docs-parser/pull/18).
- By default, the error messages now contain the full faulty markup command
(https://github.com/ansible-community/antsibull-docs-parser/pull/19).
- Extend ``OptionNamePart`` and ``ReturnValuePart`` named tuples by adding ``entrypoint``
after ``plugin`` (https://github.com/ansible-community/antsibull-docs-parser/pull/9).
- Modify ``LinkProvider.plugin_option_like_link`` signature to include a new
argument ``entrypoint`` after ``plugin`` (https://github.com/ansible-community/antsibull-docs-parser/pull/9).
- '``CommandParser.parse`` has a new ``source`` parameter (https://github.com/ansible-community/antsibull-docs-parser/pull/18).'
minor_changes:
- Add strict mode for parsing (https://github.com/ansible-community/antsibull-docs-parser/pull/15).
- Add support for ansible-doc like text output (https://github.com/ansible-community/antsibull-docs-parser/pull/17).
- Add support for semantic markup in roles (https://github.com/ansible-community/antsibull-docs-parser/pull/9).
- Allow to add markup source to every paragraph part (https://github.com/ansible-community/antsibull-docs-parser/pull/18).
- Can switch between error messages containing a shortened version of the faulty
markup or the full faulty markup command (https://github.com/ansible-community/antsibull-docs-parser/pull/19).
- Create script to update/extend the test vectors automatically (https://github.com/ansible-community/antsibull-docs-parser/pull/16).
release_summary: New major release that increases compatibility with the `TypeScript
code in antsibull-docs-ts <https://github.com/ansible-community/antsibull-docs-ts>`__.
fragments:
- 0.2.0.yml
- 15-lint.yml
- 16-create-vectors.yml
- 17-ansible-doc-text.yml
- 18-source.yml
- 19-helpful-errors.yml
- 9-semantic-markup-roles.yml
release_date: '2023-04-02'
4 changes: 0 additions & 4 deletions changelogs/fragments/0.2.0.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/15-lint.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/16-create-vectors.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/17-ansible-doc-text.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/18-source.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/19-helpful-errors.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/9-semantic-markup-roles.yml

This file was deleted.

0 comments on commit 6f7f224

Please sign in to comment.