Skip to content

Commit

Permalink
Merge pull request #4 from techthoughts2/Enhancements
Browse files Browse the repository at this point in the history
Enhancements
  • Loading branch information
techthoughts2 authored Dec 8, 2024
2 parents e81ffb0 + df9c06e commit af62a33
Show file tree
Hide file tree
Showing 31 changed files with 4,202 additions and 269 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.11"
python: "3.12"

mkdocs:
configuration: mkdocs.yml
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"powershell"
],
"cSpell.words": [
"gldata",
"jakemorrison",
"Pscx",
"shortcode"
Expand Down
6 changes: 3 additions & 3 deletions actions_bootstrap.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ $modulesToInstall = [System.Collections.ArrayList]::new()
# https://github.com/pester/Pester
$null = $modulesToInstall.Add(([PSCustomObject]@{
ModuleName = 'Pester'
ModuleVersion = '5.5.0'
ModuleVersion = '5.6.1'
}))
# https://github.com/nightroman/Invoke-Build
$null = $modulesToInstall.Add(([PSCustomObject]@{
ModuleName = 'InvokeBuild'
ModuleVersion = '5.10.5'
ModuleVersion = '5.12.1'
}))
# https://github.com/PowerShell/PSScriptAnalyzer
$null = $modulesToInstall.Add(([PSCustomObject]@{
ModuleName = 'PSScriptAnalyzer'
ModuleVersion = '1.21.0'
ModuleVersion = '1.23.0'
}))
$null = $modulesToInstall.Add(([PSCustomObject]@{
ModuleName = 'Convert'
Expand Down
11 changes: 11 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.2.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.0]

- Module Changes
- Updated to use Unicode Version: 16.0 (was previously Unicode Version: 15.1)
- Added more debug outputs across all functions
- Build Updates
- Improved integration tests
- Updated tests to follow Pester 5 rules
- Updated Bootstrap file to latest version of module dependencies
- Updated readthedocs dependencies versions

## [0.8.4]

- Module Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/pwshEmojiExplorer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Module Name: pwshEmojiExplorer
Module Guid: 6e4813c7-6f30-42e8-adc4-b3d9b46bce9a
Download Help Link: NA
Help Version: 0.8.4
Help Version: 0.9.0
Locale: en-US
---

Expand Down
8 changes: 4 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://github.com/readthedocs-examples/example-mkdocs-basic/blob/main/docs/requirements.txt
# requirements.txt
jinja2==3.0.3
mkdocs>=1.4.2
mkdocs-material>=9.0.12 #https://github.com/squidfunk/mkdocs-material
pygments>=2.14.0
jinja2==3.1.4 #https://pypi.org/project/Jinja2/
mkdocs>=1.6.0 #https://github.com/mkdocs/mkdocs
mkdocs-material==9.5.25 #https://github.com/squidfunk/mkdocs-material
pygments>=2.18.0 #https://pypi.org/project/Pygments/
# mdx_truly_sane_lists
Loading

0 comments on commit af62a33

Please sign in to comment.