Skip to content

Commit

Permalink
Release v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hernán Morales Durand committed Dec 28, 2022
1 parent c4177db commit 6cf955f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d

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

#### [0.7.2](https://github.com/hernanmd/pi/compare/0.7.1...0.7.2)

#### [0.7.1](https://github.com/hernanmd/pi/compare/0.7.0...0.7.1)

> 26 December 2022
- Release v0.7.1 [`c4177db`](https://github.com/hernanmd/pi/commit/c4177db602aac358a7c8aa0d0b0c71c2e5c84030)

#### [0.7.0](https://github.com/hernanmd/pi/compare/0.6.2...0.7.0)

> 26 December 2022
Expand Down
2 changes: 1 addition & 1 deletion DATE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
26-12-2022
28-12-2022
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
0.7.3
4 changes: 2 additions & 2 deletions libexec/piHelp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ The options include:
examples Show usage examples.
image Fetch the latest stable Pharo (VM + Image).
init Initialize and fetch PI Pharo package cache
install <pkgname> Install pkgname to the Image found in the current directory.\n\t\tDownload image if not found.
install <pkgname> Install pkgname to the Image found in the current directory. Download image if not found.
list List Pharo packages found in GitHub.
run Run a Pharo Image.
run Run a Pharo Image.
irun Download the stable image and run Pharo.image.
lrun Download the latest image and run Pharo.image.
nrun Download the stable image in a new timestamped directory and run Pharo.image.
Expand Down
6 changes: 4 additions & 2 deletions libexec/piPharo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,16 @@ trun_pharo () {
# Trash pharo-local (requires trash utility) and run Pharo.image
nrun_pharo () {
dirname=$(date +%Y-%m-%d-%S)
mkdir -v "$dirname"; cd "$dirname"
mkdir -v "$dirname"
cd "$dirname"
irun_pharo
}

# Install latest Pharo in a new timestamed directory and run Pharo.image
nlrun_pharo () {
dirname=$(date +%Y-%m-%d-%S)
mkdir -v "$dirname"; cd "$dirname"
mkdir -v "$dirname"
cd "$dirname"
lrun_pharo
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pi",
"version": "0.7.1",
"version": "0.7.2",
"description": "",
"main": "index.js",
"type": "module",
Expand Down

0 comments on commit 6cf955f

Please sign in to comment.