Skip to content

Latest commit

 

History

History
150 lines (90 loc) · 4.32 KB

CHANGELOG.md

File metadata and controls

150 lines (90 loc) · 4.32 KB

Changelog

Version 3.0.7

Add support for empty prefix flags. Allows for improved generic usage in nixpkgs/lib and other projects.

Empty prefix is now possible. Issue: nix-community#119 by @roberth

by @hsjobeki;

in nix-community#122.

Version 3.0.6

Exposes the package recipe under recipes.default so it can easily be re-used. Example:

nix-repl> :l https://github.com/nixos/nixpkgs/tarball/nixpkgs-unstable
nix-repl> :l https://github.com/nix-community/nixdoc/tarball/master
nix-repl> pkgs.callPackage recipes.default {}

Version 3.0.5

Fixes: incompatibility with nixpkgs in 3.0.3 and 3.0.4

by @hsjobeki;

in nix-community#121.

Version 3.0.4

Fixes: issue with headings ids introduced with 3.0.3

by @hsjobeki;

in nix-community#117.

Version 3.0.3

Fixes: shifting issue with commonmark headings nix-community#113

by @hsjobeki;

in nix-community#115.

Version 3.0.2

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

by @hsjobeki;

in nix-community#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 nix-community#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 nix-community#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 nix-community#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

2.5.0

2.4.0

2.3.0

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