diff --git a/INSTALL.txt b/INSTALL.txt index 093b7a3cfe..8cf1d2f272 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -12,8 +12,8 @@ Quick Start If you haven't already done so, extract the tarball: - tar -x --xz < oil-0.6.pre5.tar.xz - cd oil-0.6.pre5 + tar -x --xz < oil-0.6.pre6.tar.xz + cd oil-0.6.pre6 Either install as /usr/local/bin/osh: @@ -31,7 +31,7 @@ The latter doesn't require root access, but it requires ~/bin to be in your PATH. NOTE: Out-of-tree builds are NOT currently supported, so you have to be in the -oil-0.6.pre5 directory. +oil-0.6.pre6 directory. Smoke Test ---------- diff --git a/benchmarks/native-code.R b/benchmarks/native-code.R index 3b49e5a64a..31e57f3272 100755 --- a/benchmarks/native-code.R +++ b/benchmarks/native-code.R @@ -24,7 +24,7 @@ options(stringsAsFactors = F, # frame: A table with 3 columns. ctx$symbols or ctx$compileunits. Basic = function(frame) { frame %>% arrange(desc(filesize)) %>% head(20) -> f1 - ShowValue('Number of Symbols: %d', nrow(frame)) + ShowValue('Rows: %d', nrow(frame)) frame %>% arrange(desc(filesize)) %>% head(20) -> f1 ShowFrame('By Size On Disk:', f1) @@ -50,10 +50,9 @@ Report = function(ctx) { # This isn't foolproof, but docstrings seem to be named with a _doc or # __doc__ suffix. ctx$symbols %>% filter(str_detect(symbols, '_doc(__)?')) -> f3 - ShowFrame('Doc', f3 %>% head(20)) + ShowFrame('Big Docstrings (approximate, based on name)', f3 %>% head(20)) - ShowValue('Approx number of docstrings: %d in %d bytes', nrow(f3), - sum(f3$filesize)) + ShowValue('%d symbols in %d bytes', nrow(f3), sum(f3$filesize)) } Load = function(in_dir) { diff --git a/doc/osh-quick-ref-toc.txt b/doc/osh-quick-ref-toc.txt index 98431f8f27..62ef100582 100644 --- a/doc/osh-quick-ref-toc.txt +++ b/doc/osh-quick-ref-toc.txt @@ -2,7 +2,7 @@ OSH Quick Reference - Below is a list of topics, organized into [Sections]. - The X prefix means "unimplemented". Oil features are all unimplemented! -- HTML version: https://www.oilshell.org/release/0.6.pre5/doc/osh-quick-ref.html +- HTML version: https://www.oilshell.org/release/0.6.pre6/doc/osh-quick-ref.html INTRO [Overview] overview osh-vs-oil command-vs-expr diff --git a/doc/release-index.md b/doc/release-index.md index f5e5c8dfec..82e9e1aa53 100644 --- a/doc/release-index.md +++ b/doc/release-index.md @@ -1,6 +1,6 @@ -Oil Version 0.6.pre5 +Oil Version 0.6.pre6 ----------------- ### What's New diff --git a/oil-version.txt b/oil-version.txt index 9ed89d5f8a..daea7738b6 100644 --- a/oil-version.txt +++ b/oil-version.txt @@ -1,4 +1,4 @@ -0.6.pre5 +0.6.pre6 # 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