Skip to content

Commit

Permalink
rock 0.9.8 - swap bootstraps, release.
Browse files Browse the repository at this point in the history
  • Loading branch information
nddrylliog committed Nov 27, 2013
1 parent 3c05825 commit 1017d8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ grammar:
prepare_bootstrap:
@echo "Preparing boostrap (in build/ directory)"
rm -rf build/
${OOC} -driver=make rock.use --outpath=c-source -o=../bin/c_rock -v -g +-w
${OOC} -driver=make rock.use --outpath=c-source -o=../bin/c_rock -v -pg +-w
@echo "Done!"

boehmgc:
Expand Down Expand Up @@ -91,7 +91,7 @@ download-bootstrap:
rm -rf build/
# Note: ./utils/downloader tries curl, ftp, and then wget.
# GNU ftp will _not_ work: it does not accept a url as an argument.
./utils/downloader.sh http://downloads.ooc-lang.org/rock/0.9.7/latest-bootstrap.tar.bz2 | tar xjmf - 1>/dev/null
./utils/downloader.sh http://downloads.ooc-lang.org/rock/0.9.8/latest-bootstrap.tar.bz2 | tar xjmf - 1>/dev/null
if [ ! -e build ]; then cp -rfv rock-*/build ./; fi

# Attempt to grab a rock bootstrap from Alpaca and recompile
Expand Down
2 changes: 1 addition & 1 deletion source/rock/RockVersion.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RockVersion: class {
getMajor: static func -> Int { 0 }
getMinor: static func -> Int { 9 }
getPatch: static func -> Int { 8 }
getRevision: static func -> String { "head" }
getRevision: static func -> String { null }
getCodename: static func -> String { "columbia" }

getName: static func -> String { "%d.%d.%d%s codename %s" format(
Expand Down

0 comments on commit 1017d8a

Please sign in to comment.