release notes for 3.0.0-alpha
authorGalen Charlton <gmc@equinoxinitiative.org>
Thu, 21 Sep 2017 15:32:10 +0000 (11:32 -0400)
committerGalen Charlton <gmc@equinoxinitiative.org>
Thu, 21 Sep 2017 15:32:10 +0000 (11:32 -0400)
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>

doc/RELEASE_NOTES.txt [new file with mode: 0644]

diff --git a/doc/RELEASE_NOTES.txt b/doc/RELEASE_NOTES.txt
new file mode 100644 (file)
index 0000000..73fa70c
--- /dev/null
@@ -0,0 +1,50 @@
+OpenSRF 3.0.0-alpha release notes
+=================================
+
+Supported platforms
+-------------------
+The following Linux distributions are well-tested:
+
+  * Debian 7 (Wheezy), 8 (Jessie), and 9 (Stretch)
+  * Ubuntu 14.04 (Trusty Tahr) and 16.04 LTS (Xenial Xerus)
+
+OpenSRF 3.0.0-alpha
+-------------------
+OpenSRF 3.0.0-alpha was released on 21 September 2017. It adds support
+for Debian 9 (Stretch).
+
+Upgrade Notes
+~~~~~~~~~~~~~
+OpenSRF 3.0 also changes how the shared libraries for services written in
+C are named.  If upgrading from an earlier version of OpenSRF,
+`opensrf.xml` should be edited so that shared library file names
+listed in the `<implementation>` tag start with "lib".  For example,
+
+[source,sh]
+---------------------------------------------------------------------
+            <osrf.math>
+                <language>C</language>
+                <implementation>osrf_math.so</implementation>
+---------------------------------------------------------------------
+
+should be changed to:
+
+[source,sh]
+---------------------------------------------------------------------
+            <osrf.math>
+                <language>C</language>
+                <implementation>libosrf_math.so</implementation>
+---------------------------------------------------------------------
+
+Note for Evergreen Users
+~~~~~~~~~~~~~~~~~~~~~~~~
+OpenSRF 3.0.0 will be the minimum version required to run Evergreen 3.0.
+
+Acknowledgements
+~~~~~~~~~~~~~~~~
+
+We would like to thank the following people who contributed to OpenSRF 3.0.0-alpha:
+
+  * Galen Charlton
+  * Ben Shum
+  * Jason Stephenson