Skip to content

Commit d42b53b

Browse files
release: Reptile 0.1
Adding CHANGELOG and Release Notes
1 parent 38d305d commit d42b53b

2 files changed

Lines changed: 38 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Reptile 0.1:
2+
3+
* Initial Release of Reptile (#1)
4+
* Read Evaluate Print Terminal Input Loop Editor - A Scaley Simple PowerShell Data REPL.
5+
* Reptile is simple (#2) scalable (#3) and mostly safe (#4)
6+
* `Get-Reptile` / `Reptile` / 🦎, 🐊 gets and hatches reptiles (#5, 24)
7+
* Turtle.Reptile is a fun example (#6)
8+
* Is has limited variable support (#22)
9+
* Calculating Reptile is a safe calculator (#7)
10+
* Days Until Reptile tells time until (#8)
11+
* Gradient Reptile generates gradients (#9)
12+
* Sleepy Reptile shows multiple delayed returns (#26)
13+
* `Get-Reptile` can get a specific `-ReptileName/-Name/-Species` (#17)
14+
* `Get-Reptile` can `-Run` or `-Hatch` a new instance (#18)
15+
* `Reptile` can change its skin (#23)
16+
* `Reptile` returns data in chunks (#25)

Reptile.psd1

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Copyright = '2025 Start Automating'
3333
Description = 'Read Evaluate Print Terminal Input Loop Editor - A Scaley Simple PowerShell Data REPL.'
3434

3535
# Minimum version of the PowerShell engine required by this module
36-
# PowerShellVersion = ''
36+
PowerShellVersion = '7.0'
3737

3838
# Name of the PowerShell host required by this module
3939
# PowerShellHostName = ''
@@ -69,16 +69,16 @@ Description = 'Read Evaluate Print Terminal Input Loop Editor - A Scaley Simple
6969
# NestedModules = @()
7070

7171
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
72-
FunctionsToExport = '*'
72+
FunctionsToExport = 'Get-Reptile'
7373

7474
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
75-
CmdletsToExport = '*'
75+
CmdletsToExport = @()
7676

7777
# Variables to export from this module
78-
VariablesToExport = '*'
78+
VariablesToExport = @()
7979

8080
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
81-
AliasesToExport = '*'
81+
AliasesToExport = 'Reptile', '🦎','🐊'
8282

8383
# DSC resources to export from this module
8484
# DscResourcesToExport = @()
@@ -108,6 +108,23 @@ PrivateData = @{
108108

109109
# ReleaseNotes of this module
110110
ReleaseNotes = @'
111+
## Reptile 0.1:
112+
113+
* Initial Release of Reptile (#1)
114+
* Read Evaluate Print Terminal Input Loop Editor - A Scaley Simple PowerShell Data REPL.
115+
* Reptile is simple (#2) scalable (#3) and mostly safe (#4)
116+
* `Get-Reptile` / `Reptile` / 🦎, 🐊 gets and hatches reptiles (#5, 24)
117+
* Turtle.Reptile is a fun example (#6)
118+
* Is has limited variable support (#22)
119+
* Calculating Reptile is a safe calculator (#7)
120+
* Days Until Reptile tells time until (#8)
121+
* Gradient Reptile generates gradients (#9)
122+
* Sleepy Reptile shows multiple delayed returns (#26)
123+
* `Get-Reptile` can get a specific `-ReptileName/-Name/-Species` (#17)
124+
* `Get-Reptile` can `-Run` or `-Hatch` a new instance (#18)
125+
* `Reptile` can change its skin (#23)
126+
* `Reptile` returns data in chunks (#25)
127+
111128
'@
112129

113130
# Prerelease string of this module

0 commit comments

Comments
 (0)