Skip to content

Latest commit

 

History

History
119 lines (71 loc) · 3.6 KB

CHANGELOG.md

File metadata and controls

119 lines (71 loc) · 3.6 KB

Changelog

Version 3.0.4

Fixes: issue with headings ids introduced with 3.0.3

by @hsjobeki;

in #117.

Version 3.0.3

Fixes: shifting issue with commonmark headings #113

by @hsjobeki;

in #115.

Version 3.0.2

Avoid displaying arguments when a doc-comment is already in place.

by @hsjobeki;

in #109.

Version 3.0.1

New Features

  • Official Doc-Comments Support: We've introduced support for official doc-comments as defined in RFC145. This enhancement aligns nixdoc with our latest documentation standard.

Deprecated Features

  • Legacy Custom Format: The custom nixdoc format is now considered a legacy feature. We plan to phase it out in future versions to streamline documentation practices.
  • We encourage users to transition to the official doc-comment format introduced in this release.
  • For now we will continue to maintain the legacy format, but will not accept new features or enhancements for it. This decision allows for a period of transition to the new documentation practices.

See Migration guide for smooth transition

by @hsjobeki; co-authored by @mightyiam

in #91.

Version 3.0.0

Removed due to invalid lock file.

2.7.0

  • Added support to customise the attribute set prefix, which was previously hardcoded to lib. The default is still lib, but you can pass --prefix now to use something else like utils.

    By @Janik-Haag in #97

2.6.0

  • After doing a great job of maintaining the project for this year, @asymmetric is passing on the torch to @infinisil!

  • Multi-line comments at the top of the file now become the section description text. By @phaer in #70

    For example, the following file

    /*
    This is just a test!
    */
    {
      /* Increments a number by one */
      increment = x: x + 1;
    }

    turns into the following markdown:

    # Test {#sec-functions-library-test}
    This is just a test!
    
    ## `lib.test.increment` {#function-library-lib.test.increment}
    
    Increments a number by one
    
    `x`
    
    : Function argument

    whereas before, the top section would've been empty.

2.5.1

  • readme: fix link to rendering example by @infinisil in #67
  • Fix indentation of structured multi-line comments by @asymmetric in #81

2.5.0

2.4.0

  • Fix line indentation stripping by @infinisil in #62

2.3.0

  • nix: remove outdated outputHashes by @asymmetric in #38
  • add snapshot testing by @asymmetric in #39
  • Create dependabot.yml by @asymmetric in #41
  • chore(deps): bump cachix/install-nix-action from 20 to 22 by @dependabot in #42
  • complete the markdown transition by @pennae in #40

2.2.0

  • Update rnix to 0.11 by @pennae #36

2.1.0

  • Correctly support nested identifiers by @infinisil #27

2.0.0

  • Switched output format from DocBook to CommonMark by @ryantm #25