Skip to content

Commit

Permalink
[release] Update version to 0.6.pre6.
Browse files Browse the repository at this point in the history
Also: minor cleanup of 'native-code' report.
  • Loading branch information
Andy Chu committed Oct 14, 2018
1 parent 422d641 commit f12b263
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions INSTALL.txt
Expand Up @@ -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:

Expand All @@ -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
----------
Expand Down
7 changes: 3 additions & 4 deletions benchmarks/native-code.R
Expand Up @@ -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)
Expand All @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion doc/osh-quick-ref-toc.txt
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/release-index.md
@@ -1,6 +1,6 @@
<!-- NOTE: This file is at /release/$VERSION/index.html -->

Oil Version 0.6.pre5
Oil Version 0.6.pre6
-----------------

### What's New
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit f12b263

Please sign in to comment.