diff --git a/CHANGELOG.md b/CHANGELOG.md index bb47e4f..54e0989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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/). +## [1.3.0] +### Added +- @gtowers-dukosi: Added API method `set_script_file()` to specify a Script + File to be loaded. + ## [1.2.1] ### Fixed - @FletcherD: Fixed a bug in `load_library()` on Linux where a 32-bit library diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 34e3639..ed57831 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -23,3 +23,4 @@ In the order of appearance in the commit history: | Christopher Pattenden | @cpattenden-sq | | Dominic Shelton | @frogamic | | Fletcher D | @FletcherD | +| G Towers | @gtowers-dukosi | diff --git a/pylink/__init__.py b/pylink/__init__.py index 7e895d9..97ceaab 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__ = '1.2.1' +__version__ = '1.3.0' __title__ = 'pylink' __author__ = 'Square Embedded Software Team' __author_email__ = 'esw-team@squareup.com'