aboutsummaryrefslogtreecommitdiffstats
path: root/doc/download.rst
blob: da57cbde1a9d6d32bf4d5cb21a9cc9666458fe46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90

Getting The Latest Sources
========================================

All releases are signed with a :doc:`PGP key <pgpkey>`.

Unsure which release you want? Check the :ref:`FAQ <devel_vs_stable>`.

.. only:: not website

   .. note::

      If you are viewing this documentation offline, a more recent
      release `may be available <http://botan.randombit.net/download.html>`_.

Current Development Series (1.11)
----------------------------------------

The latest version of the current development series, from branch
``net.randombit.botan``, is :doc:`relnotes/1_11_0`:
:tgz:`1.11.0` (:tgz_sig:`sig <1.11.0>`),
:tbz:`1.11.0` (:tbz_sig:`sig <1.11.0>`)

.. note::

   Versions 1.11.0 and later require a C++11 compiler.

Current Stable Series (1.10)
----------------------------------------

The latest version of the current stable series, from branch
``net.randombit.botan.1_10``, is :doc:`relnotes/1_10_3`:
:tgz:`1.10.3` (:tgz_sig:`sig <1.10.3>`),
:tbz:`1.10.3` (:tbz_sig:`sig <1.10.3>`)

Windows Installer
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Windows installers for use with Visual C++ 2010
:installer_x86_32:`1.10.3` (:installer_sig_x86_32:`sig <1.10.3>`)
and
:installer_x86_64:`1.10.3` (:installer_sig_x86_64:`sig <1.10.3>`)
are also available.

Previous Stable Series (1.8)
----------------------------------------

The latest version of the previous stable series, from branch
``net.randombit.botan.1_8`` is :doc:`relnotes/1_8_14`:
:tgz:`1.8.14` (:tgz_sig:`sig <1.8.14>`),
:tbz:`1.8.14` (:tbz_sig:`sig <1.8.14>`)

Accessing Version Control
----------------------------------------

Botan's development occurs using a distributed version control system
called `Monotone <http://www.monotone.ca>`_. The main branch of
development occurs on the branch named ``net.randombit.botan``. To
download that branch and set up a new workspace, run::

   $ mtn db init --db=botan.mtn
   $ mtn pull --db=botan.mtn randombit.net 'net.randombit.botan'
   [...]
   $ mtn checkout --db=botan.mtn --branch=net.randombit.botan
   [...]

By default the ``checkout`` command will place the workspace in a
directory with the same name as the branch you are checking out. If
you want a different directory name, just include it after the
``--branch`` option (you can also rename this directory at any time).

If this is the first time you've connected to the server, Monotone
will print::

  mtn: first time connecting to server randombit.net
  mtn: I'll assume it's really them, but you might want to double-check
  mtn: their key's fingerprint: 8c0b868f2247215c63c96983b1c8ca0f0f0cfd9a

The fingerprint shown above was the correct one as of June 20, 2012.

To pull further changes, from anywhere in the workspace run these
commands::

  $ mtn pull
  [...]
  $ mtn update
  [summary of changes]

The ``mtn update`` command will give you a summary of which files
changed; to view the full changelog, run ``mtn log``.