Skip to content

Commit cbd7830

Browse files
author
James Brundage
committed
release: Turtle 0.1.2
Updating Manifest and CHANGELOG
1 parent 096731b commit cbd7830

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## Turtle 0.1.2:
2+
3+
* `Get-Turtle/Turtle` can now get or set properties or methods
4+
* New Methods:
5+
* `Turtle.Distance()` determines the distance to a point
6+
* `Turtle.Towards()` determines the angle to a point
7+
* `Turtle.Home()` sends the turtle to 0,0
8+
* `Turtle.lt/rt` aliases help original Logo compatibility
9+
* `Turtle.Save()` calls Save-Turtle
10+
* Explicitly exporting commands from module
11+
112
## Turtle 0.1.1:
213

314
* Updates:

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
<div align='center'>
44
<img src='./Examples/SierpinskiTriangle.svg' alt='SierpinskiTriangle' width='50%' />
5+
<br/>
6+
<a href='https://www.powershellgallery.com/packages/Turtle/' >
7+
<img src='https://img.shields.io/powershellgallery/dt/Turtle' />
8+
</a>
59
</div>
610

711

README.md.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ param()
1414
1515
<div align='center'>
1616
<img src='./Examples/SierpinskiTriangle.svg' alt='SierpinskiTriangle' width='50%' />
17+
<br/>
18+
<a href='https://www.powershellgallery.com/packages/Turtle/' >
19+
<img src='https://img.shields.io/powershellgallery/dt/Turtle' />
20+
</a>
1721
</div>
1822
1923

Turtle.psd1

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
# Version number of this module.
3-
ModuleVersion = '0.1.1'
3+
ModuleVersion = '0.1.2'
44
# Description of the module
55
Description = "Turtles in a PowerShell"
66
# Script module or binary module file associated with this manifest.
@@ -37,6 +37,17 @@
3737
# A URL to the license for this module.
3838
LicenseURI = 'https://github.com/PowerShellWeb/Turtle/blob/main/LICENSE'
3939
ReleaseNotes = @'
40+
## Turtle 0.1.2:
41+
42+
* `Get-Turtle/Turtle` can now get or set properties or methods
43+
* New Methods:
44+
* `Turtle.Distance()` determines the distance to a point
45+
* `Turtle.Towards()` determines the angle to a point
46+
* `Turtle.Home()` sends the turtle to 0,0
47+
* `Turtle.lt/rt` aliases help original Logo compatibility
48+
* `Turtle.Save()` calls Save-Turtle
49+
* Explicitly exporting commands from module
50+
4051
## Turtle 0.1.1:
4152
4253
* Updates:

0 commit comments

Comments
 (0)