Skip to content

Latest commit

 

History

History
232 lines (119 loc) · 7.88 KB

CHANGELOG.md

File metadata and controls

232 lines (119 loc) · 7.88 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Fixed

  • The table of contents-generation for pydoctor-based documentation has been restored. #133

3.0.0 - 2022-09-13

Removed

  • Since pydoctor added support for intersphinx in version 21.2.0, the dedicated HTML-parsing parser has been removed. If you need to parse legacy pydoctor docs, please use doc2dash 2.4.1.

Added

  • Stand-alone binaries! If your platform is supported, you can now download binaries from the release page without dealing with Python at all – courtesy of PyOxidizer.
  • intersphinx: documentation based on MkDocs with mkdocstrings metadata is now supported.
  • intersphinx: if no explicit name is passed, the docset name is derived von the documentation's metadata (and not the directory name, which is more often than not just html).
  • We use rich for output and progress bars now. This allows us more granular progress indication.
  • Documentation on writing your own parser plugins.

Changed

  • Tons of refactorings that probably broke your custom parsers. Sorry about that and let us know, if we can help you fixing them.
  • intersphinx: We now parse objects.inv files on our own. Sphinx is not a dependency anymore.
  • intersphinx: Files that are indexed by intersphinx, but don't exist aren't added to the docset anymore. Common example is py-modindex.html. #113 #115
  • We now check if the index page passed via --index-page / -I exists and fail if it doesn't.

2.4.1 - 2022-01-21

Added

  • Added support for URL-encoded filenames. #104

2.4.0 - 2021-11-16

Removed

  • Every Python version older than 3.8. Please use 2.3 if you need to run doc2dash on legacy Python versions.

Added

  • Better display names with Sphinx v2 inventories. #101

  • intersphinx: new types:

    • cmdoption (deprecated alias for option)
    • doc
    • label
    • property
    • protocol
    • setting
    • term

    Re-indexing your documentation may add new index entries!

Changed

  • zope.interface is not a dependency anymore.
  • colorama is only a dependency on Windows now.

Fixed

  • Work around a display bug in olderDash.appreleases by setting the plist key DashDocSetDeclaredInStyle to originalName.

2.3.0 - 2018-11-24

Deprecated

  • This is the final release that works on Python versions older than 3.8. If necessary, there may be more 2.3.x bugfix releases -- the next release will require Python 3.8 or later though.

Changed

  • The dependencies aren't pinned anymore.
  • lxml is not a dependency anymore.

Fixed

  • python -m doc2dash works now as expected.

2.2.0 - 2017-06-12

Added

  • InterSphinxParser is now open to extension. #59
  • Support a --parser option to force the use of a custom parser class. #60

2.1.0 - 2016-03-14

Removed

  • Remove legacy Sphinx parsing. The intersphinx parser is much more robust so the old way shouldn't be needed anymore.

Added

  • Add support for InterSphinx constants. #49
  • Add support for --enable-js and --online-redirect-url options. #43

Fixed

  • Fix handling in-docs links with multiple anchors. #47
  • Better support for relative paths. #37, #41

2.0.2 - 2014-09-24

Fixed

2.0.1 - 2014-09-16

Fixed

  • Better Unicode support. The move from unicode_literals to explicit prefixes broke some things that are fixed now. #29, #30

2.0.0 - 2014-08-14

Added

  • Added a new parser for Sphinx documentation that uses intersphinx files that are machine readable. That should lead to more reliable parsing and a better deduction of symbol types. #28
  • Added Sphinx-based documentation.
  • Added colors, styles, and a progress bar to make output more comprehensible.

Changed

  • Internally quite a few changes happened. Most prominently tuples and namedtuples have been replaced by real classes and parsers don't inherit from anything anymore. The fundamental working principal stayed the same though so porting your parsers is trivial.

Fixed

  • setup.py test works now.

1.2.1 - 2014-07-24

Fixed

  • Fix docset name deduction if the source path ends with a /. #26

1.2.0 - 2014-01-07

Added

  • Runs now on Python 3.3. This is achieved by upgrading dependencies that didn't play along well before on 3.3.
  • Add --index option.

1.1.0 - 2013-01-13

Fixed

  • Use betterDash.apptypes for modules and attributes.

1.0.0 - 2012-10-14

Changed

  • Due to lack of known problems, pronouncing stable, thus 1.0.0.
  • Please note that no code except for the tests has changed since 0.3.1.

Fixed

  • Make tests pass on Python 2.7 too.

0.3.1 - 2012-06-28

Changed

  • Pronounced beta – happy testing!

0.3.0 - 2012-06-28

Added

  • Add table of contents links to docs to get a nice TOC in Dash.app when inside of a module.
  • Support DashDocSetFamily field.
  • Add --verbose and --quiet options.
  • Add --destination option.
  • Add --add-to-dash option.
  • Allow adding of an PNG icon to the docset (--icon).

0.2.2 - 2012-06-16

Changed

  • Don't collect () as part of method/function names.
  • Index whole names: symbols are searchable by the whole name, including the namespace.

0.2.1 - 2012-06-15

Fixed

  • Fix PyPI package: add missing MANIFEST.in and add missing packages to setup.py.

0.2.0 - 2012-06-14

Added

  • Add support for built-in constants and classes.

Changed

  • Strip annotations from unused remembered names the are re-used in synonyms.