Skip to content

Commit 44dae1e

Browse files
committed
fix(links): More link fixes along with a few configuration fixes to remove warnings.
1 parent b86dba4 commit 44dae1e

8 files changed

Lines changed: 36 additions & 17 deletions

File tree

changelogs/CHANGELOG.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,22 @@ Feat 012 (#39)
130130
- Merge pull request #42 from jcook3701/develop
131131

132132
Feat 013 (#41)
133+
- Feat 014 (#43)
133134

134-
### 🐛 Fixed
135+
* fix(links): Fix for document links.
135136

136-
- *(template)* Updates to template cookiecutter.json file.
137-
- *(links)* Fix for document links.
138-
- *(links)* More link fixes.
139-
- *(upgrader)* Fixed upgrader file.
137+
* fix(links): More link fixes.
138+
139+
* feat(docs): Added variables to jekyll configuration.
140140

141-
### 🚀 Added
141+
* fix(upgrader): Fixed upgrader file.
142+
- Merge pull request #44 from jcook3701/develop
142143

143-
- *(docs)* Added variables to jekyll configuration.
144+
Feat 014 (#43)
145+
146+
### 🐛 Fixed
147+
148+
- *(template)* Updates to template cookiecutter.json file.
144149
## [0.1.0] - 2025-12-05
145150

146151
### ⚙️ Miscellaneous

changelogs/releases/v0.1.1.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,19 @@ Feat 012 (#39)
130130
- Merge pull request #42 from jcook3701/develop
131131

132132
Feat 013 (#41)
133+
- Feat 014 (#43)
133134

134-
### 🐛 Fixed
135+
* fix(links): Fix for document links.
135136

136-
- *(template)* Updates to template cookiecutter.json file.
137-
- *(links)* Fix for document links.
138-
- *(links)* More link fixes.
139-
- *(upgrader)* Fixed upgrader file.
137+
* fix(links): More link fixes.
138+
139+
* feat(docs): Added variables to jekyll configuration.
140140

141-
### 🚀 Added
141+
* fix(upgrader): Fixed upgrader file.
142+
- Merge pull request #44 from jcook3701/develop
142143

143-
- *(docs)* Added variables to jekyll configuration.
144+
Feat 014 (#43)
145+
146+
### 🐛 Fixed
147+
148+
- *(template)* Updates to template cookiecutter.json file.

{{ cookiecutter.project_slug }}/Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ gem "faraday-retry", "~> 2.3"
66
gem "jekyll", "~> 4.4"
77
gem "just-the-docs", "~> 0.11"
88

9+
gem "bigdecimal"
10+
gem "csv"
11+
gem "logger"
12+
gem "base64"
13+
914
group :jekyll_plugins do
1015
gem "jekyll-seo-tag"
1116
gem "jekyll-sitemap"

{{ cookiecutter.project_slug }}/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ back_to_top_text: "Back to top"
102102

103103
footer_content: >-
104104
{{ cookiecutter.copyright }}. Distributed by an
105-
<a href="{{ cookiecutter.repo_url }}/blob/master/LICENSE">
105+
<a href="{{ cookiecutter.repo_url }}/blob/master/LICENSE.md">
106106
{{ cookiecutter.license }} license.
107107
</a>
108108
<a href=""></a>

{{ cookiecutter.project_slug }}/_manual/contribute/style-guides/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ parent: Contribute
77
---
88

99
## Style Guides
10-
* [Python](python.md) style guide.
11-
* [Typescript](typescript.md) style guide.
10+
* [Python]({% raw %}{% link _manual/contribute/style-guides/python.md %}{% endraw %}) style guide.
11+
* [Typescript]({% raw %}{% link _manual/contribute/style-guides/typescript.md %}{% endraw %}) style guide.
12+
* [YAML]({% raw %}{% link _manual/contribute/style-guides/yaml.md %}{% endraw %}) style guide.

{{ cookiecutter.project_slug }}/_manual/contribute/style-guides/python.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ title: "Python Style Guide"
44
nav_order: 1
55
parent: "Style Guide"
66
---
7+
## Python Style Guide

{{ cookiecutter.project_slug }}/_manual/contribute/style-guides/typescript.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ title: "Typescript Style Guide"
44
nav_order: 1
55
parent: "Style Guide"
66
---
7+
## Typescript Style Guide

{{ cookiecutter.project_slug }}/_manual/contribute/style-guides/yaml.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ title: "YAML Style Guide"
44
nav_order: 1
55
parent: "Style Guide"
66
---
7+
## YAML Style Guide

0 commit comments

Comments
 (0)