diff --git a/CHANGELOG.md b/CHANGELOG.md
index aa6edba..6fd30b6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](http://keepachangelog.com/)
 and this project adheres to [Semantic Versioning](http://semver.org/).
 
+## [0.14.0]
+
+### Changed
+- @dottspina: Changed behaviour of `load_library()` on Linux-based platforms to
+  resolve sonames; fixes an issue where `find_library()` would fail, and the
+  underlying platform-specific methods would not return the path to the soname
+  file.
+
 ## [0.13.0]
 
 ### Added
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 31af990..e91d2b1 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -14,3 +14,4 @@ In the order of appearance in the commit history:
 | Volker Kettenbach         | @kettenbach-it     |
 | Jacob Siverskog           | @jsiverskog        |
 | Johannes Neyer            | @johannesneyer     |
+| Chris Duf                 | @dottspina         |
diff --git a/pylink/__init__.py b/pylink/__init__.py
index 8e7abe2..36dc34e 100644
--- a/pylink/__init__.py
+++ b/pylink/__init__.py
@@ -12,7 +12,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-__version__ = '0.13.0'
+__version__ = '0.14.0'
 __title__ = 'pylink'
 __author__ = 'Square Embedded Software Team'
 __author_email__ = 'esw-team@squareup.com'