Skip to content

Commit

Permalink
[release] Bump version to 0.18.0
Browse files Browse the repository at this point in the history
Also tweak comments.
  • Loading branch information
Andy C committed Sep 3, 2023
1 parent 375e603 commit a22759e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Quick Start

If you haven't already done so, extract the tarball:

tar -x --xz < oil-0.17.0.tar.xz
cd oil-0.17.0
tar -x --xz < oil-0.18.0.tar.xz
cd oil-0.18.0

Either install as /usr/local/bin/osh:

Expand All @@ -33,7 +33,7 @@ The latter doesn't require root access, but it requires:
(See manpath or $MANPATH.)

NOTE: Out-of-tree builds are NOT currently supported, so you have to be in the
oil-0.17.0 directory.
oil-0.18.0 directory.

Smoke Test
----------
Expand All @@ -52,7 +52,7 @@ More Documentation

Every release has a home page with links, e.g.

https://oilshell.org/release/0.17.0/
https://oilshell.org/release/0.18.0/

System Requirements
-------------------
Expand Down
2 changes: 1 addition & 1 deletion doc/osh.1
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The referenced command or script could not be found.
.Xr busybox 1 ,
.Xr sh 1
.Pp
.Lk http://www.oilshell.org/release/0.17.0/doc/ Docs
.Lk http://www.oilshell.org/release/0.18.0/doc/ Docs
.Sh AUTHORS
The
.Nm
Expand Down
4 changes: 2 additions & 2 deletions doc/release-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ all_docs_url: -
version_url: -
---

Oils 0.17.0
Oils 0.18.0
===========

<!-- NOTE: This file is published to /release/$VERSION/index.html -->
Expand All @@ -13,7 +13,7 @@ Oils 0.17.0
<!-- REPLACE_WITH_DATE -->
</span>

This is the home page for version 0.17.0 of Oils, a Unix shell. To use it,
This is the home page for version 0.18.0 of Oils, a Unix shell. To use it,

1. Download a source tarball.
2. Build it and do a "smoke test", as described in [INSTALL][].
Expand Down
2 changes: 1 addition & 1 deletion doc/release-quality.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ all_docs_url: -
version_url: -
---

Oils 0.17.0 Quality
Oils 0.18.0 Quality
===================

<!-- NOTE: This file is published to /release/$VERSION/quality.html -->
Expand Down
2 changes: 1 addition & 1 deletion oil-version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.17.0
0.18.0

# The first line of this file is the Oil version, and the rest is ignored.
# It's used at build time for the release tarball, and at runtime for oil
Expand Down
8 changes: 4 additions & 4 deletions osh/cmd_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -1069,13 +1069,13 @@ def ParseSimpleCommand(self):
# Disallow X=Y inside proc and func
# and inside Hay Attr blocks
# But allow X=Y at the top level
# - for interactive use foo=bar
# - for global constants GLOBAL=~/src
# - because YSH assignment doesn't have tilde sub
# for interactive use foo=bar
# for global constants GLOBAL=~/src
# because YSH assignment doesn't have tilde sub
if len(suffix_words) == 0:
if self.cmd_mode != cmd_mode_e.Shell or (
len(self.hay_attrs_stack) and self.hay_attrs_stack[-1]):
p_die('Use const or var/setvar to assign in YSH', left_token)
p_die('Use var/setvar to assign in YSH', left_token)

# Set a reference to words and redirects for completion. We want to
# inspect this state after a failed parse.
Expand Down

0 comments on commit a22759e

Please sign in to comment.