diff --git a/README.rst b/README.rst index 897b4e7f..31c1a324 100644 --- a/README.rst +++ b/README.rst @@ -222,6 +222,14 @@ with TUF; upstream servers, who will largely be responsible for care and feeding of repositories; and integrators, who do the work of putting TUF into existing projects. +A low-level integration requires importing a single module and calling +particular methods to perform updates. A high-level integration, on the +other hand, can handle TUF-related updates transparently. The client +populates a configuration file and the library interposes on urllib calls. +Generating metadata files stored on upstream servers can be handled by the +repository tool, covered in ``Creating a Repository``. + + - `Creating a Repository `_ - `Low-level Integration `_ diff --git a/setup.py b/setup.py index 73eba425..960e0caf 100755 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ setup( name = 'tuf', - version = '0.9.8', + version = '0.9.9', description = 'A secure updater framework for Python', long_description = long_description, author = 'http://www.theupdateframework.com', diff --git a/tuf/client/README.md b/tuf/client/README.md index 015ad39c..563d30c3 100644 --- a/tuf/client/README.md +++ b/tuf/client/README.md @@ -149,7 +149,7 @@ for target in updated_target: ``` ###A Simple Integration Example with basic_client.py -``` +``` Bash # Assume a simple TUF repository has been setup with 'tuf.repository_tool.py'. $ basic_client.py --repo http://localhost:8001