Skip to content

Commit 2d5f41c

Browse files
committed
Updated the index page
1 parent b010b0d commit 2d5f41c

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

www/index.html

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,18 @@ <h3>Use</h3>
1919
<ul>
2020
<li><a href="/demo/">Web demo</a></li>
2121
<li><a href="#tools">Herbie tools</a></li>
22+
<li><a href="doc/latest/release-notes.html">Release Notes</a></li>
2223
<li><a href="#news">News</a></li>
2324
<li><a href="#blog">Blog</a></li>
2425
</ul>
2526
</div>
2627
<div>
2728
<h3>Learn</h3>
2829
<ul>
29-
<li><a href="doc/using-herbie.html">Using Herbie</a></li>
30-
<li><a href="doc/using-herbgrind.html">Using HerbGrind</a></li>
31-
<li><a href="doc/installing-herbie.html">Install Herbie</a></li>
32-
<li><a href="doc/installing-herbgrind.html">Install HerbGrind</a></li>
30+
<li><a href="doc/latest/using-herbie.html">Using Herbie</a></li>
31+
<li><a href="doc/latest/using-herbgrind.html">Using HerbGrind</a></li>
32+
<li><a href="doc/latest/installing-herbie.html">Install Herbie</a></li>
33+
<li><a href="doc/latest/installing-herbgrind.html">Install HerbGrind</a></li>
3334
<li><a href="#docs">Documentation</a></li>
3435
<li><a href="pldi15.html">PLDI'15 Paper</a></li>
3536
</ul>
@@ -104,6 +105,7 @@ <h2 id="tools">Tools</h2>
104105

105106
<h2>Herbie Project News</h2>
106107
<ol id="news">
108+
<li><time>13 Jun</time>After months of work, the Herbie developers are proud to announce the release of <a href="doc/1.0/release-notes.html">Herbie 1.0</a>. This release transitions to the <a href="doc/latest/input.html">FPCore</a> format from the <a href="http://fpbench.org">FPBench</a> initiative, and includes significant bug fixes, usability tweaks, and improvements. Read about all the changes in the <a href="doc/1.0/release-notes.html">release notes</a>.</li>
107109
<li><time>9 May</time>In preparation for the Version 1.0 release, we've renamed the <code>pi</code> and <code>e</code> constants to upper case. This matches <code>libm</code> and should make it a little harder to cause bugs. Herbie will now optimize expressions like <code>(exp 1)</code> to <code>E</code>.</li>
108110
<li><time>6 May</time>We're proud to announce that we've been collaborating with <a href="http://perso.univ-perp.fr/mmartel/">Prof. Martel</a> and his students to build a <a href="http://fpbench.org">common benchmark suite and format</a> for floating point tools. Version 1.0 of Herbie will support only the FPBench format.</li>
109111
<li><time>4 Apr</time><a href="https://pavpanchekha.com/">Pavel</a> is giving a talk at Google on how Herbie works and what our plans for the future are.</li>
@@ -124,14 +126,16 @@ <h2>Herbie Project News</h2>
124126
<h2 id="docs">Documentation</h2>
125127

126128
<ul>
127-
<li><a href="doc/installing-herbie.html">Installing Herbie</a>: installing Racket and Herbie.</li>
128-
<li><a href="doc/installing-herbgrind.html">Installing HerbGrind</a>: installing HerbGrind.</li>
129-
<li><a href="doc/docker.html">Installing with Docker</a>: an alternate installation method for Docker users.</li>
130-
<li><a href="doc/tutorial.html">Tutorial</a>: how to prepare inputs to Herbie and run the tool.</li>
131-
<li><a href="doc/using-herbie.html">Using Herbie</a>: a guide to running Herbie.</li>
132-
<li><a href="doc/input.html">Input format</a>: how to write expressions for Herbie to improve.</li>
133-
<li><a href="doc/options.html">Command-line flags</a>: modifying Herbie's behavior.</li>
134-
<li><a href="doc/using-herbgrind.html">Using HerbGrind</a>: a guide to running HerbGrind.</li>
129+
<li><a href="doc/latest/release-notes.html">Release Notes</a>: the biggest and latest changes to Herbie.</li>
130+
<li><a href="doc/latest/faq.html">FAQ</a>: troubleshooting and using Herbie.</li>
131+
<li><a href="doc/latest/installing-herbie.html">Installing Herbie</a>: installing Racket and Herbie.</li>
132+
<li><a href="doc/latest/installing-herbgrind.html">Installing HerbGrind</a>: installing HerbGrind.</li>
133+
<li><a href="doc/latest/docker.html">Installing with Docker</a>: an alternate installation method for Docker users.</li>
134+
<li><a href="doc/latest/tutorial.html">Tutorial</a>: how to prepare inputs to Herbie and run the tool.</li>
135+
<li><a href="doc/latest/using-herbie.html">Using Herbie</a>: a guide to running Herbie.</li>
136+
<li><a href="doc/latest/input.html">Input format</a>: how to write expressions for Herbie to improve.</li>
137+
<li><a href="doc/latest/options.html">Command-line flags</a>: modifying Herbie's behavior.</li>
138+
<li><a href="doc/latest/using-herbgrind.html">Using HerbGrind</a>: a guide to running HerbGrind.</li>
135139
</ul>
136140

137141
<h2>Blog posts about Herbie</h2>
@@ -146,7 +150,6 @@ <h2>Blog posts about Herbie</h2>
146150
<li><a href="https://pavpanchekha.com/blog/arbitrary-precision.html">Arbitrary Precision, not Arbitrary Accuracy</a>: why arbitrary-precision libraries aren’t an answer to rounding error.</li>
147151
<li><a href="https://pavpanchekha.com/blog/casio-mathjs.html">Complex Square Roots in math.js</a>: how Herbie automatically fixed an accuracy bug in <a href="http://mathjs.org">math.js</a>, an open source mathematics library.</li>
148152
<li><a href="https://pavpanchekha.com/blog/fp-guarantees.html">Floating Point Guarantees</a>: how floating point rounding and primitive operators work.</li>
149-
150153
</ul>
151154

152155
<h2>The Herbie Developers</h2>

0 commit comments

Comments
 (0)