Skip to content

Commit

Permalink
[release] Bump to version 0.21.0
Browse files Browse the repository at this point in the history
Put oils-for-unix tarball first on the downloads list.  We've translated
it!
  • Loading branch information
Andy C committed Mar 12, 2024
1 parent 65b048d commit 34696f2
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 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.20.0.tar.xz
cd oil-0.20.0
tar -x --xz < oil-0.21.0.tar.xz
cd oil-0.21.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.20.0 directory.
oil-0.21.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.20.0/
https://oilshell.org/release/0.21.0/

System Requirements
-------------------
Expand Down
6 changes: 4 additions & 2 deletions build/doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,11 @@ tarball-links-row-html() {
</tr>
EOF

# we switched to .gz for oils for Unix
for name in oil-$version.tar.{gz,xz} \
# we switched to .gz for oils-for-unix
# note: legacy names for old releases
for name in \
oils-for-unix-$version.tar.{gz,xz} \
oil-$version.tar.{gz,xz} \
oil-native-$version.tar.xz; do

local url="/download/$name" # The server URL
Expand Down
2 changes: 1 addition & 1 deletion devtools/release-note.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ source build/dev-shell.sh # PYTHONPATH
source devtools/release-version.sh # for escape-segments

readonly OILS_VERSION=$(head -n 1 oil-version.txt)
readonly PREV_VERSION='0.19.0'
readonly PREV_VERSION='0.20.0'

# adapted from release-version.sh
_git-changelog-body() {
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.20.0/doc/ Docs
.Lk http://www.oilshell.org/release/0.21.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.20.0
Oils 0.21.0
===========

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

This is the home page for version 0.20.0 of Oils, a Unix shell. To use it,
This is the home page for version 0.21.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.20.0 Quality
Oils 0.21.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.20.0
0.21.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

0 comments on commit 34696f2

Please sign in to comment.