Commit ae50a31b authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Updated setup.py, README and CHANGES for 0.7.0

parent ef3024aa
Loading
Loading
Loading
Loading
+16 −2
Original line number Diff line number Diff line
Changes since 0.6.0.2
=====================
Changes since 0.7.0
===================
This section will document changes to the library since the last release

Changes from 0.6.0.2 to 0.7.0
=============================

## Important
Kinetic Protocol version updated to 2.0.3

## New features
- Added Flush command (Requires protocol 2.0.3)
- Added Limits section on GetLog (Requires protocol 2.0.3)
- Added protocol_version field on kinetic module
- Added version field on kinetic module

## Breaking changes
- Renamed Synchronization.ASYNC to Synchronization.WRITETHROUGH
- Renamed Synchronization.SYNC to Synchronization.WRITEBACK

## Bug Fixes
- Fixed issue with asynchronous clients leaving the socket open after _close_ was called (ASOKVAD-263).
+5 −3
Original line number Diff line number Diff line
Introduction
========
============
This repository hosts the preliminary phase of the Kinetic Python Client source code. Improvements of this repo will be added in the near future to provide examples and documentation.

Initial Setup
=============

    git clone https://github.com/Seagate/kinetic-py.git
    git submodule init
    git submodule update

Running Tests
=============
+1 −1
Original line number Diff line number Diff line
from setuptools import setup, find_packages

version = '0.6.0.3'
version = '0.7.0'

setup(
    name='kinetic',