1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

Bump version to 1.12.0; pass through as a variable to index.html

This commit is contained in:
Geoffrey Booth 2016-11-30 20:48:06 -08:00
parent 5588658641
commit 6d507b46d3
4 changed files with 4 additions and 3 deletions

View file

@ -221,6 +221,7 @@ task 'doc:site', 'watch and continually rebuild the documentation for the websit
codeFor: codeFor()
releaseHeader: releaseHeader
majorVersion: majorVersion
fullVersion: CoffeeScript.VERSION
fs.writeFileSync "docs/v#{majorVersion}/index.html", output
log 'compiled', green, "#{indexFile} → docs/v#{majorVersion}/index.html"

View file

@ -126,7 +126,7 @@
<p>
<b>Latest Version:</b>
<a href="http://github.com/jashkenas/coffeescript/tarball/1.11.1">1.11.1</a>
<a href="http://github.com/jashkenas/coffeescript/tarball/<%= fullVersion %>"><%= fullVersion %></a>
</p>
<pre>npm install -g coffee-script</pre>

View file

@ -8,7 +8,7 @@
"compiler"
],
"author": "Jeremy Ashkenas",
"version": "1.11.1",
"version": "1.12.0",
"license": "MIT",
"engines": {
"node": ">=0.8.0"

View file

@ -12,7 +12,7 @@ helpers = require './helpers'
SourceMap = require './sourcemap'
# The current CoffeeScript version number.
exports.VERSION = '1.11.1'
exports.VERSION = '1.12.0'
exports.FILE_EXTENSIONS = ['.coffee', '.litcoffee', '.coffee.md']