Skip to content

Latest commit

 

History

History
82 lines (62 loc) · 2.69 KB

CHANGELOG.md

File metadata and controls

82 lines (62 loc) · 2.69 KB

Changelog

Useful links: Docsy releases & tags. Jump to the latest release.

For a list of issues targeted for the next release, see the 22Q2 milestone.

0.4.0 - next planned release (unpublished yet)

Breaking changes:

  • Docsy no longer uses git submodules for Bootstrap and FontAwesome. If your project uses Hugo Modules, then this change doesn't impact you.

    For projects with other Docsy setups, use the NPM packages of Bootstrap and FontAwesome. Migrate your site by following these steps (execute commands from your project's root directory):

    1. Update Docsy to 0.4.0.
    2. Delete obsolete Docsy Git submodules:
      $ rm -Rf themes/docsy/assets/vendor
    3. Get Docsy dependencies:
      $ (cd themes/docsy && npm install)
    4. (Optional) If your site project uses NPM, consider getting Docsy dependencies via a prepare script, for example:
      {
        "name": "my-website",
        "scripts": {
          "get:submodule": "git submodule update --init --depth 1",
          "_prepare:docsy": "cd themes/docsy && npm install",
          "prepare": "npm run get:submodule && npm run _prepare:docsy",
          "...": "..."
        },
        "...": "..."
      }
    5. Proceed as usual to build or serve your site.

Breaking changes:

Details:

New:

Details: