<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coq/INSTALL, branch master</title>
<subtitle>The formal proof system</subtitle>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/'/>
<entry>
<title>[doc] [INSTALL] Port INSTALL to markdown format.</title>
<updated>2019-12-13T16:05:48+00:00</updated>
<author>
<name>Emilio Jesus Gallego Arias</name>
</author>
<published>2019-12-09T14:04:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=7a8c20ed6a745bc8c3d77482057fe3920cb8770e'/>
<id>7a8c20ed6a745bc8c3d77482057fe3920cb8770e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to override build date with SOURCE_DATE_EPOCH</title>
<updated>2019-12-02T16:07:38+00:00</updated>
<author>
<name>Bernhard M. Wiedemann</name>
</author>
<published>2019-12-02T10:43:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=80bd3766dd8f1729187ed9c8e0ad29f67cea0886'/>
<id>80bd3766dd8f1729187ed9c8e0ad29f67cea0886</id>
<content type='text'>
in order to make builds reproducible.
See https://reproducible-builds.org/ for why this is good
and https://reproducible-builds.org/specs/source-date-epoch/
for the definition of this variable.

Fixes #11037
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in order to make builds reproducible.
See https://reproducible-builds.org/ for why this is good
and https://reproducible-builds.org/specs/source-date-epoch/
for the definition of this variable.

Fixes #11037
</pre>
</div>
</content>
</entry>
<entry>
<title>Add the IEEE-754 arch requirement in INSTALL</title>
<updated>2019-11-01T09:21:43+00:00</updated>
<author>
<name>Pierre Roux</name>
</author>
<published>2019-10-18T10:03:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=3b1edf7cf689a54d03226072dd3b359026588e26'/>
<id>3b1edf7cf689a54d03226072dd3b359026588e26</id>
<content type='text'>
Co-authored-by: Erik Martin-Dorel &lt;erik.martin-dorel@irit.fr&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Erik Martin-Dorel &lt;erik.martin-dorel@irit.fr&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ci] Update supported OCaml version to 4.09.0</title>
<updated>2019-09-19T13:27:43+00:00</updated>
<author>
<name>Emilio Jesus Gallego Arias</name>
</author>
<published>2019-09-19T09:25:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=f050253ac1e5507f3d3bf52f94c7a23ba2775d00'/>
<id>f050253ac1e5507f3d3bf52f94c7a23ba2775d00</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ci] Update to OCaml 4.08.1</title>
<updated>2019-08-27T17:12:58+00:00</updated>
<author>
<name>Emilio Jesus Gallego Arias</name>
</author>
<published>2019-08-09T01:54:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=c053787e4bdfc28711b0c92416ff3afdca4aecf5'/>
<id>c053787e4bdfc28711b0c92416ff3afdca4aecf5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[core] [api] Support OCaml 4.08</title>
<updated>2019-07-08T11:18:47+00:00</updated>
<author>
<name>Emilio Jesus Gallego Arias</name>
</author>
<published>2019-07-03T10:54:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=dda7d129dba6c90d642cd99cd989e5f13c0eb4b4'/>
<id>dda7d129dba6c90d642cd99cd989e5f13c0eb4b4</id>
<content type='text'>
The changes are large due to `Pervasives` deprecation:

- the `Pervasives` module has been deprecated in favor of `Stdlib`, we
  have opted for introducing a few wrapping functions in `Util` and
  just unqualified the rest of occurrences. We avoid the shims as in
  the previous attempt.

- a bug regarding partial application have been fixed.

- some formatting functions have been deprecated, but previous
  versions don't include a replacement, thus the warning has been
  disabled.

We may want to clean up things a bit more, in particular
w.r.t. modules once we can move to OCaml 4.07 as the minimum required
version.

Note that there is a clash between 4.08.0 modules `Option` and `Int`
and Coq's ones. It is not clear if we should resolve that clash or
not, see PR #10469 for more discussion.

On the good side, OCaml 4.08.0 does provide a few interesting
functionalities, including nice new warnings useful for devs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The changes are large due to `Pervasives` deprecation:

- the `Pervasives` module has been deprecated in favor of `Stdlib`, we
  have opted for introducing a few wrapping functions in `Util` and
  just unqualified the rest of occurrences. We avoid the shims as in
  the previous attempt.

- a bug regarding partial application have been fixed.

- some formatting functions have been deprecated, but previous
  versions don't include a replacement, thus the warning has been
  disabled.

We may want to clean up things a bit more, in particular
w.r.t. modules once we can move to OCaml 4.07 as the minimum required
version.

Note that there is a clash between 4.08.0 modules `Option` and `Int`
and Coq's ones. It is not clear if we should resolve that clash or
not, see PR #10469 for more discussion.

On the good side, OCaml 4.08.0 does provide a few interesting
functionalities, including nice new warnings useful for devs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix dev/doc/README.md by removing redundant, outdated info.</title>
<updated>2019-06-27T14:43:55+00:00</updated>
<author>
<name>Théo Zimmermann</name>
</author>
<published>2019-06-27T14:43:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=e239ac13a8329f3be679e0b9d61778b4ad89de12'/>
<id>e239ac13a8329f3be679e0b9d61778b4ad89de12</id>
<content type='text'>
And also clean INSTALL file of useless reminder of the procedure to
install using a package manager.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And also clean INSTALL file of useless reminder of the procedure to
install using a package manager.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundancies in the INSTALL doc.</title>
<updated>2019-06-05T12:32:41+00:00</updated>
<author>
<name>Théo Zimmermann</name>
</author>
<published>2019-06-05T12:32:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=a3da7880393791fcf3ed3eafe8444b3049e3119f'/>
<id>a3da7880393791fcf3ed3eafe8444b3049e3119f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #10283: clearer dependency documentation for building CoqIDE.</title>
<updated>2019-06-05T08:35:28+00:00</updated>
<author>
<name>Théo Zimmermann</name>
</author>
<published>2019-06-05T08:35:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=e5ad4787ed51bf0bad8a9b742662cbdac5a6abc6'/>
<id>e5ad4787ed51bf0bad8a9b742662cbdac5a6abc6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CoqIDE: Adapt configuration to require lablgtk3 and gtksourceview3.</title>
<updated>2019-03-19T08:40:17+00:00</updated>
<author>
<name>Hugo Herbelin</name>
</author>
<published>2018-11-19T14:39:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=977261ed0afd415932401c3f5df258333488e47b'/>
<id>977261ed0afd415932401c3f5df258333488e47b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
