Skip to content

Commit

Permalink
Release v0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Hernán Morales Durand committed Dec 29, 2022
1 parent 6cf955f commit c292944
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 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.3](https://github.com/hernanmd/pi/compare/0.7.2...0.7.3)

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

> 28 December 2022
- Release v0.7.2 [`6cf955f`](https://github.com/hernanmd/pi/commit/6cf955fc8ee5e57eacc95e2720d65ed98b01ec83)

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

> 26 December 2022
Expand Down
2 changes: 1 addition & 1 deletion DATE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
28-12-2022
29-12-2022
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.3
l
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

readonly ERR_INVALID_USAGE=2
readonly tmpDir="$(mktemp -d -t pi-tarball-unpack.XXXXXXXXXX || \
oops "Can't create temporary directory for downloading the Pi tarball")"
oops "Can't create temporary directory for downloading the PI tarball")"

require_util() {
command -v "$1" > /dev/null 2>&1 ||
Expand Down
8 changes: 2 additions & 6 deletions libexec/piPharo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -158,17 +158,13 @@ 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"
irun_pharo
(mkdir -v "$dirname" && cd "$dirname" && irun_pharo) || pi_log "Cannot run Pharo Image"
}

# 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"
lrun_pharo
(mkdir -v "$dirname" && cd "$dirname" && lrun_pharo) || pi_log "Cannot run Pharo Image"
}

download_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.2",
"version": "0.7.3",
"description": "",
"main": "index.js",
"type": "module",
Expand Down

0 comments on commit c292944

Please sign in to comment.