Skip to content

Commit 6cf955f

Browse files
author
Hernán Morales Durand
committed
Release v0.7.2
1 parent c4177db commit 6cf955f

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [0.7.2](https://github.com/hernanmd/pi/compare/0.7.1...0.7.2)
8+
79
#### [0.7.1](https://github.com/hernanmd/pi/compare/0.7.0...0.7.1)
810

11+
> 26 December 2022
12+
13+
- Release v0.7.1 [`c4177db`](https://github.com/hernanmd/pi/commit/c4177db602aac358a7c8aa0d0b0c71c2e5c84030)
14+
915
#### [0.7.0](https://github.com/hernanmd/pi/compare/0.6.2...0.7.0)
1016

1117
> 26 December 2022

DATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26-12-2022
1+
28-12-2022

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.2
1+
0.7.3

libexec/piHelp.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ The options include:
3434
examples Show usage examples.
3535
image Fetch the latest stable Pharo (VM + Image).
3636
init Initialize and fetch PI Pharo package cache
37-
install <pkgname> Install pkgname to the Image found in the current directory.\n\t\tDownload image if not found.
37+
install <pkgname> Install pkgname to the Image found in the current directory. Download image if not found.
3838
list List Pharo packages found in GitHub.
39-
run Run a Pharo Image.
39+
run Run a Pharo Image.
4040
irun Download the stable image and run Pharo.image.
4141
lrun Download the latest image and run Pharo.image.
4242
nrun Download the stable image in a new timestamped directory and run Pharo.image.

libexec/piPharo.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,16 @@ trun_pharo () {
158158
# Trash pharo-local (requires trash utility) and run Pharo.image
159159
nrun_pharo () {
160160
dirname=$(date +%Y-%m-%d-%S)
161-
mkdir -v "$dirname"; cd "$dirname"
161+
mkdir -v "$dirname"
162+
cd "$dirname"
162163
irun_pharo
163164
}
164165

165166
# Install latest Pharo in a new timestamed directory and run Pharo.image
166167
nlrun_pharo () {
167168
dirname=$(date +%Y-%m-%d-%S)
168-
mkdir -v "$dirname"; cd "$dirname"
169+
mkdir -v "$dirname"
170+
cd "$dirname"
169171
lrun_pharo
170172
}
171173

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pi",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "",
55
"main": "index.js",
66
"type": "module",

0 commit comments

Comments
 (0)