diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fd30b6..efcae19 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/). +## [0.14.1] + +### Added +- @ford: Added `tests` to the published `sdist`. + ## [0.14.0] ### Changed diff --git a/MANIFEST.in b/MANIFEST.in index fa6eef1..9ea1a44 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include CHANGELOG.md include LICENSE.md include README.md -recursive-exclude tests *.pyc *.o *.bin *.elf +recursive-include tests +recursive-exclude *.pyc *.o *.bin *.elf diff --git a/pylink/__init__.py b/pylink/__init__.py index 36dc34e..5af9f51 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.14.0' +__version__ = '0.14.1' __title__ = 'pylink' __author__ = 'Square Embedded Software Team' __author_email__ = 'esw-team@squareup.com'