Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit b11d3a2

Browse files
authored
[RELEASE] v0.9.3 official release (#4767)
1 parent 0964409 commit b11d3a2

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

NEWS.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
MXNet Change Log
22
================
3-
## NNVM: inprogress refactor branch
3+
## 0.9.3
44
- Move symbolic API to NNVM @tqchen
55
- Most front-end C API are backward compatible
66
- Removed symbolic api in MXNet and relies on NNVM
7+
- New features:
8+
- MXNet profiler for profiling operator level executions
9+
- mxnet.image package for fast image loading and processing
710
- Change of JSON format
811
- param and attr field are merged to attr
912
- New code is backward compatible can load old json format

R-package/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: mxnet
22
Type: Package
33
Title: MXNet
4-
Version: 0.9.2
4+
Version: 0.9.3
55
Date: 2015-12-23
66
Author: Tianqi Chen, Qiang Kou, Tong He
77
Maintainer: Qiang Kou <qkou@umail.iu.edu>

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ deep learning system, and interesting insights of DL systems for hackers.
2222

2323
What's New
2424
----------
25+
* [Version 0.9.3 Release](./docs/architecture/release_note_0_9.md) - First 0.9 official release.
2526
* [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.
2627
* [Version 0.8.0 Release](https://github.com/dmlc/mxnet/releases/tag/v0.8.0)
2728
* [Updated Image Classification with new Pre-trained Models](./example/image-classification)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
}
5656
os.environ['MXNET_BUILD_DOC'] = '1'
5757
# Version information.
58-
version = '0.9.2'
59-
release = '0.9.2'
58+
version = '0.9.3'
59+
release = '0.9.3'
6060
# import mxnet
6161
# version = mxnet.__version__
6262
# release = mxnet.__version__

include/mxnet/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
/*! \brief minor version */
8888
#define MXNET_MINOR 9
8989
/*! \brief patch version */
90-
#define MXNET_PATCH 1
90+
#define MXNET_PATCH 3
9191
/*! \brief mxnet version */
9292
#define MXNET_VERSION (MXNET_MAJOR*10000 + MXNET_MINOR*100 + MXNET_PATCH)
9393
/*! \brief helper for making version number */

python/mxnet/libinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ def find_lib_path():
3939

4040

4141
# current version
42-
__version__ = "0.9.2"
42+
__version__ = "0.9.3"

0 commit comments

Comments
 (0)