aboutsummaryrefslogtreecommitdiffstats
path: root/doc/download.txt
blob: 2072ee88efc0e67b44132e22c33d37c0c6e11d0f (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

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`

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_2`:
:tgz:`1.10.2` (:tgz_sig:`sig <1.10.2>`),
:tbz:`1.10.2` (:tbz_sig:`sig <1.10.2>`)

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

Windows installers for :installer_x86_32:`1.10.1` and
:installer_x86_64:`1.10.1` for use with Visual C++ 2010 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_13`:
:tgz:`1.8.13` (:tgz_sig:`sig <1.8.13>`),
:tbz:`1.8.13` (:tbz_sig:`sig <1.8.13>`)

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

Windows installers for :installer_x86_32:`1.8.11` and
:installer_x86_64:`1.8.11` for use with Visual C++ 2008 are also
available.

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``.