----------------
* Change from GPL to New BSD License for broader audience.
* Added __version__ info
* Added access security control
access security control file can be loaded using :meth:`SimpleServer.initAccessSecurityFile`.
The loaded rules can then be assigned to PV's *asg* field.
`example/access_control.py` provides an example and better explained in :ref:`tutorial-access-security-control`.
* Added new type char.
It is used to represent a long string (>40 chars). And it behaves just like string parameters in driver.
example/pysh.py provides a concrete example, in PV `COMMAND` and `OUTPUT`.
* Added timestamp info.
The timestamp is set at each setParam call with new value different to current value.
* Added alarm/severity info.
* For *enum* type PV, the severity is configured by its *states* field.
It is a list of severity states, which can be NO_ALARM, MINOR_ALARM, MAJOR_ALARM, INVALID_ALARM.
If current state's severity is other than NO_ALARM, alarm is STATE_ALARM.
* For *int* or *float* type PV, the alarm state is configured by its *low*, *high*, *lolo*, *hihi* fields,
in analogue to EPICS database.
* `example/alarm_severity` provides an example.