From 8f4369bf1c8e4e898ab6d9cc5e3ef9fa1685954e Mon Sep 17 00:00:00 2001 From: Matthew Taylor Date: Fri, 13 Feb 2015 22:20:41 -0800 Subject: [PATCH] Release 0.1.3. --- CHANGELOG.md | 14 ++++++++++++++ README.md | 4 ++-- VERSION | 2 +- docs/Doxyfile | 2 +- nupic/__init__.py | 2 +- 5 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2cfff2c26..fa98f1b62a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.1.3 + +* Remove unnecessary build flag and fix a bug that was causing duplicated definition names. +* Added warning in README for OS X. +* Doc updates +* Include additional libs in common libs +* Use gcc in default docker configuration to match nupic.core binary release. Increase resources in coreos configuration. +* Fixed ValueError When coordinate encoder is used with DateEncoder +* Add library path for capnp libraries to linker. +* Adds capnp libraries to linker args. +* Adds interface file for converting from pycapnp schema to compiled in schema and uses it with SWIGed C++ SpatialPooler class's read and write methods. +* Discard NTA_PLATFORM_* in favor of NTA_OS_* and NTA_ARCH_* macro variables +* Raises exception when enableInference was not called, or when predicted field missing from input row. + ## 0.1.2 * Add archflags env var before deploy command on OSX diff --git a/README.md b/README.md index 4fab865059..6c4902ed73 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ The Numenta Platform for Intelligent Computing (**NuPIC**) is a machine intellig For more information, see [numenta.org](http://numenta.org) or the [NuPIC wiki](https://github.com/numenta/nupic/wiki). -## Installing NuPIC 0.1.2 +## Installing NuPIC 0.1.3 NuPIC binaries are available for: @@ -30,7 +30,7 @@ NuPIC binaries are available for: > The Linux wheel file is hosted on AWS S3 instead of on the standard PyPi servers because [Linux wheels are not allowed to be uploaded to pypi](https://bitbucket.org/pypa/pypi-metadata-formats/issue/15/enhance-the-platform-tag-definition-for) yet. - pip install https://s3-us-west-2.amazonaws.com/artifacts.numenta.org/numenta/nupic/releases/nupic-0.1.2-cp27-none-linux_x86_64.whl + pip install https://s3-us-west-2.amazonaws.com/artifacts.numenta.org/numenta/nupic/releases/nupic-0.1.3-cp27-none-linux_x86_64.whl ### _Having problems?_ diff --git a/VERSION b/VERSION index 09e787511b..b1e80bb248 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.3.dev0 +0.1.3 diff --git a/docs/Doxyfile b/docs/Doxyfile index 5a807948cd..4e40f7d986 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = NuPIC # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.1.3.dev0 +PROJECT_NUMBER = 0.1.3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/nupic/__init__.py b/nupic/__init__.py index 8c34360ee2..15a0c94a6c 100644 --- a/nupic/__init__.py +++ b/nupic/__init__.py @@ -18,4 +18,4 @@ # # http://numenta.org/licenses/ # ---------------------------------------------------------------------- -__version__ = "0.1.3.dev0" +__version__ = "0.1.3"