Skip to content

Commit

Permalink
Release 0.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Mar 13, 2023
1 parent c4c1d6a commit 5bc13a2
Show file tree
Hide file tree
Showing 11 changed files with 62 additions and 18 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,35 @@ antsibull-docs -- TypeScript library for processing Ansible documentation markup
.. contents:: Topics


v0.1.0
======

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

First usable version, including semantic markup support.

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

- Add support for semantic markup (https://github.com/ansible-community/antsibull-docs-ts/pull/1).
- Added MarkDown support (https://github.com/ansible-community/antsibull-docs-ts/pull/5).
- Allow to adjust formatting for HTML, RST, and MarkDown output by allowing to provide formatting functions for every part type (https://github.com/ansible-community/antsibull-docs-ts/pull/12).
- Allow to chose between antsibull-docs like formatting (for Sphinx targets) and plain formatting for HTML (https://github.com/ansible-community/antsibull-docs-ts/pull/12).
- Build both ESM and CommonJS modules for easier consumption in both webpack and node.js projects (https://github.com/ansible-community/antsibull-docs-ts/pull/14).
- Mention paragraph number in error messages when not processing single strings (https://github.com/ansible-community/antsibull-docs-ts/pull/11).

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

- The package was renamed on npmjs.com from ``antsibull_docs`` to ``antsibull-docs`` (https://github.com/ansible-community/antsibull-docs-ts/pull/15).

Bugfixes
--------

- Fix error message output for MarkDown. Make sure error message is escaped in RST. Fix error messages when parsing escaped parameters (https://github.com/ansible-community/antsibull-docs-ts/pull/8).
- The ``parse()`` option ``errors``'s default was ``exception``, and not ``message`` as documented. The default is now ``message`` (https://github.com/ansible-community/antsibull-docs-ts/pull/6).

v0.0.1
======

Expand Down
33 changes: 33 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,36 @@ releases:
fragments:
- initial-release.yml
release_date: '2023-03-07'
0.1.0:
changes:
breaking_changes:
- The package was renamed on npmjs.com from ``antsibull_docs`` to ``antsibull-docs``
(https://github.com/ansible-community/antsibull-docs-ts/pull/15).
bugfixes:
- Fix error message output for MarkDown. Make sure error message is escaped
in RST. Fix error messages when parsing escaped parameters (https://github.com/ansible-community/antsibull-docs-ts/pull/8).
- The ``parse()`` option ``errors``'s default was ``exception``, and not ``message``
as documented. The default is now ``message`` (https://github.com/ansible-community/antsibull-docs-ts/pull/6).
minor_changes:
- Add support for semantic markup (https://github.com/ansible-community/antsibull-docs-ts/pull/1).
- Added MarkDown support (https://github.com/ansible-community/antsibull-docs-ts/pull/5).
- Allow to adjust formatting for HTML, RST, and MarkDown output by allowing
to provide formatting functions for every part type (https://github.com/ansible-community/antsibull-docs-ts/pull/12).
- Allow to chose between antsibull-docs like formatting (for Sphinx targets)
and plain formatting for HTML (https://github.com/ansible-community/antsibull-docs-ts/pull/12).
- Build both ESM and CommonJS modules for easier consumption in both webpack
and node.js projects (https://github.com/ansible-community/antsibull-docs-ts/pull/14).
- Mention paragraph number in error messages when not processing single strings
(https://github.com/ansible-community/antsibull-docs-ts/pull/11).
release_summary: First usable version, including semantic markup support.
fragments:
- 0.1.0.yml
- 1-semantic-markup.yml
- 11-errors.yml
- 12-formatting.yml
- 14-module.yml
- 5-md.yml
- 6-bugs.yml
- 8-fixes.yml
- rename.yml
release_date: '2023-03-13'
1 change: 0 additions & 1 deletion changelogs/fragments/0.1.0.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1-semantic-markup.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/11-errors.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/12-formatting.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/14-module.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/5-md.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/6-bugs.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/8-fixes.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/rename.yml

This file was deleted.

0 comments on commit 5bc13a2

Please sign in to comment.