diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 82f4ced..5cb6934 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -22,6 +22,7 @@ jobs: - name: Generate Docs run: | + mv ./src ./color # For the docs header cp ./README.md ./color/ # For the README to be included in the docs. v doc -readme -f html -o ./ -m ./color diff --git a/color/color.v b/src/color.v similarity index 100% rename from color/color.v rename to src/color.v diff --git a/color/constants.v b/src/constants.v similarity index 100% rename from color/constants.v rename to src/constants.v diff --git a/color/paintbrush.v b/src/paintbrush.v similarity index 100% rename from color/paintbrush.v rename to src/paintbrush.v diff --git a/color/style.v b/src/style.v similarity index 100% rename from color/style.v rename to src/style.v diff --git a/v.mod b/v.mod index 51f9ef9..f8da4c5 100644 --- a/v.mod +++ b/v.mod @@ -1,7 +1,7 @@ Module { name: 'color' description: 'An easier way to print colored text to the terminal.' - version: '1.2.1' + version: '1.2.2' license: 'MIT' dependencies: [] }