Skip to content

Commit af62a33

Browse files
Merge pull request #4 from techthoughts2/Enhancements
Enhancements
2 parents e81ffb0 + df9c06e commit af62a33

31 files changed

+4202
-269
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version: 2
1010
build:
1111
os: ubuntu-22.04
1212
tools:
13-
python: "3.11"
13+
python: "3.12"
1414

1515
mkdocs:
1616
configuration: mkdocs.yml

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"powershell"
2121
],
2222
"cSpell.words": [
23+
"gldata",
2324
"jakemorrison",
2425
"Pscx",
2526
"shortcode"

actions_bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ $modulesToInstall = [System.Collections.ArrayList]::new()
1111
# https://github.com/pester/Pester
1212
$null = $modulesToInstall.Add(([PSCustomObject]@{
1313
ModuleName = 'Pester'
14-
ModuleVersion = '5.5.0'
14+
ModuleVersion = '5.6.1'
1515
}))
1616
# https://github.com/nightroman/Invoke-Build
1717
$null = $modulesToInstall.Add(([PSCustomObject]@{
1818
ModuleName = 'InvokeBuild'
19-
ModuleVersion = '5.10.5'
19+
ModuleVersion = '5.12.1'
2020
}))
2121
# https://github.com/PowerShell/PSScriptAnalyzer
2222
$null = $modulesToInstall.Add(([PSCustomObject]@{
2323
ModuleName = 'PSScriptAnalyzer'
24-
ModuleVersion = '1.21.0'
24+
ModuleVersion = '1.23.0'
2525
}))
2626
$null = $modulesToInstall.Add(([PSCustomObject]@{
2727
ModuleName = 'Convert'

docs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.2.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.0]
9+
10+
- Module Changes
11+
- Updated to use Unicode Version: 16.0 (was previously Unicode Version: 15.1)
12+
- Added more debug outputs across all functions
13+
- Build Updates
14+
- Improved integration tests
15+
- Updated tests to follow Pester 5 rules
16+
- Updated Bootstrap file to latest version of module dependencies
17+
- Updated readthedocs dependencies versions
18+
819
## [0.8.4]
920

1021
- Module Changes

docs/pwshEmojiExplorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Module Name: pwshEmojiExplorer
33
Module Guid: 6e4813c7-6f30-42e8-adc4-b3d9b46bce9a
44
Download Help Link: NA
5-
Help Version: 0.8.4
5+
Help Version: 0.9.0
66
Locale: en-US
77
---
88

docs/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# https://github.com/readthedocs-examples/example-mkdocs-basic/blob/main/docs/requirements.txt
22
# requirements.txt
3-
jinja2==3.0.3
4-
mkdocs>=1.4.2
5-
mkdocs-material>=9.0.12 #https://github.com/squidfunk/mkdocs-material
6-
pygments>=2.14.0
3+
jinja2==3.1.4 #https://pypi.org/project/Jinja2/
4+
mkdocs>=1.6.0 #https://github.com/mkdocs/mkdocs
5+
mkdocs-material==9.5.25 #https://github.com/squidfunk/mkdocs-material
6+
pygments>=2.18.0 #https://pypi.org/project/Pygments/
77
# mdx_truly_sane_lists

0 commit comments

Comments
 (0)