Skip to content

Commit

Permalink
[RELEASE] v0.9.3 official release (apache#4767)
Browse files Browse the repository at this point in the history
  • Loading branch information
piiswrong authored Jan 22, 2017
1 parent 0964409 commit b11d3a2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
MXNet Change Log
================
## NNVM: inprogress refactor branch
## 0.9.3
- Move symbolic API to NNVM @tqchen
- Most front-end C API are backward compatible
- Removed symbolic api in MXNet and relies on NNVM
- New features:
- MXNet profiler for profiling operator level executions
- mxnet.image package for fast image loading and processing
- Change of JSON format
- param and attr field are merged to attr
- New code is backward compatible can load old json format
Expand Down
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: mxnet
Type: Package
Title: MXNet
Version: 0.9.2
Version: 0.9.3
Date: 2015-12-23
Author: Tianqi Chen, Qiang Kou, Tong He
Maintainer: Qiang Kou <qkou@umail.iu.edu>
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ deep learning system, and interesting insights of DL systems for hackers.

What's New
----------
* [Version 0.9.3 Release](./docs/architecture/release_note_0_9.md) - First 0.9 official release.
* [Version 0.9.1 Release (NNVM refactor)](./docs/architecture/release_note_0_9.md) - NNVM branch is merged into master now. An official release will be made soon.
* [Version 0.8.0 Release](https://github.com/dmlc/mxnet/releases/tag/v0.8.0)
* [Updated Image Classification with new Pre-trained Models](./example/image-classification)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
}
os.environ['MXNET_BUILD_DOC'] = '1'
# Version information.
version = '0.9.2'
release = '0.9.2'
version = '0.9.3'
release = '0.9.3'
# import mxnet
# version = mxnet.__version__
# release = mxnet.__version__
Expand Down
2 changes: 1 addition & 1 deletion include/mxnet/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
/*! \brief minor version */
#define MXNET_MINOR 9
/*! \brief patch version */
#define MXNET_PATCH 1
#define MXNET_PATCH 3
/*! \brief mxnet version */
#define MXNET_VERSION (MXNET_MAJOR*10000 + MXNET_MINOR*100 + MXNET_PATCH)
/*! \brief helper for making version number */
Expand Down
2 changes: 1 addition & 1 deletion python/mxnet/libinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def find_lib_path():


# current version
__version__ = "0.9.2"
__version__ = "0.9.3"

0 comments on commit b11d3a2

Please sign in to comment.