szha closed pull request #9183: bump up version to 1.0.1 URL: https://github.com/apache/incubator-mxnet/pull/9183
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/R-package/DESCRIPTION b/R-package/DESCRIPTION index 6e0f93294b..2996eed5db 100644 --- a/R-package/DESCRIPTION +++ b/R-package/DESCRIPTION @@ -1,7 +1,7 @@ Package: mxnet Type: Package Title: MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems -Version: 1.0.0 +Version: 1.0.1 Date: 2017-06-27 Author: Tianqi Chen, Qiang Kou, Tong He Maintainer: Qiang Kou <[email protected]> diff --git a/include/mxnet/base.h b/include/mxnet/base.h index 84b2fea712..262c348eb8 100644 --- a/include/mxnet/base.h +++ b/include/mxnet/base.h @@ -113,7 +113,7 @@ /*! \brief minor version */ #define MXNET_MINOR 0 /*! \brief patch version */ -#define MXNET_PATCH 0 +#define MXNET_PATCH 1 /*! \brief mxnet version */ #define MXNET_VERSION (MXNET_MAJOR*10000 + MXNET_MINOR*100 + MXNET_PATCH) /*! \brief helper for making version number */ diff --git a/python/mxnet/libinfo.py b/python/mxnet/libinfo.py index 26e39c93c0..fc7c16ebbe 100644 --- a/python/mxnet/libinfo.py +++ b/python/mxnet/libinfo.py @@ -61,4 +61,4 @@ def find_lib_path(): # current version -__version__ = "1.0.0" +__version__ = "1.0.1" diff --git a/scala-package/assembly/linux-x86_64-cpu/pom.xml b/scala-package/assembly/linux-x86_64-cpu/pom.xml index 10f5d39638..75f2d2cdcb 100644 --- a/scala-package/assembly/linux-x86_64-cpu/pom.xml +++ b/scala-package/assembly/linux-x86_64-cpu/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-full-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -18,12 +18,12 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>libmxnet-scala-linux-x86_64-cpu</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>so</type> </dependency> </dependencies> diff --git a/scala-package/assembly/linux-x86_64-gpu/pom.xml b/scala-package/assembly/linux-x86_64-gpu/pom.xml index 9c9af8422d..7c7162dbec 100644 --- a/scala-package/assembly/linux-x86_64-gpu/pom.xml +++ b/scala-package/assembly/linux-x86_64-gpu/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-full-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -18,12 +18,12 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>libmxnet-scala-linux-x86_64-gpu</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>so</type> </dependency> </dependencies> diff --git a/scala-package/assembly/osx-x86_64-cpu/pom.xml b/scala-package/assembly/osx-x86_64-cpu/pom.xml index 986245b5cb..0b5c4e20b4 100644 --- a/scala-package/assembly/osx-x86_64-cpu/pom.xml +++ b/scala-package/assembly/osx-x86_64-cpu/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-full-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -18,12 +18,12 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>libmxnet-scala-osx-x86_64-cpu</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>jnilib</type> </dependency> </dependencies> diff --git a/scala-package/assembly/pom.xml b/scala-package/assembly/pom.xml index aa9513a480..efa3b75b15 100644 --- a/scala-package/assembly/pom.xml +++ b/scala-package/assembly/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/scala-package/core/pom.xml b/scala-package/core/pom.xml index 5fede4a9af..b7219064a5 100644 --- a/scala-package/core/pom.xml +++ b/scala-package/core/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -71,13 +71,13 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-init_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-macros_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> diff --git a/scala-package/examples/pom.xml b/scala-package/examples/pom.xml index b6bdc7b6d8..eaa51f9ff5 100644 --- a/scala-package/examples/pom.xml +++ b/scala-package/examples/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -118,7 +118,7 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> diff --git a/scala-package/init-native/linux-x86_64/pom.xml b/scala-package/init-native/linux-x86_64/pom.xml index e9d9ac3ead..0d15a6cb11 100644 --- a/scala-package/init-native/linux-x86_64/pom.xml +++ b/scala-package/init-native/linux-x86_64/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-scala-init-native-parent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -20,7 +20,7 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-init_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> diff --git a/scala-package/init-native/osx-x86_64/pom.xml b/scala-package/init-native/osx-x86_64/pom.xml index 663528012a..e2af2de982 100644 --- a/scala-package/init-native/osx-x86_64/pom.xml +++ b/scala-package/init-native/osx-x86_64/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-scala-init-native-parent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -20,7 +20,7 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-init_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> diff --git a/scala-package/init-native/pom.xml b/scala-package/init-native/pom.xml index 37ecbb8f22..7ca19f1b07 100644 --- a/scala-package/init-native/pom.xml +++ b/scala-package/init-native/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/scala-package/init/pom.xml b/scala-package/init/pom.xml index 08b6119553..972b894841 100644 --- a/scala-package/init/pom.xml +++ b/scala-package/init/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <!-- <relativePath>../pom.xml</relativePath>--> </parent> diff --git a/scala-package/macros/pom.xml b/scala-package/macros/pom.xml index e905f2eaa4..dea908a8dc 100644 --- a/scala-package/macros/pom.xml +++ b/scala-package/macros/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -41,13 +41,13 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-init_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>libmxnet-init-scala-${platform}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <scope>provided</scope> <type>${libtype}</type> </dependency> diff --git a/scala-package/native/linux-x86_64-cpu/pom.xml b/scala-package/native/linux-x86_64-cpu/pom.xml index 4ea7eea9cb..3bcb0123e8 100644 --- a/scala-package/native/linux-x86_64-cpu/pom.xml +++ b/scala-package/native/linux-x86_64-cpu/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-scala-native-parent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -20,7 +20,7 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> diff --git a/scala-package/native/linux-x86_64-gpu/pom.xml b/scala-package/native/linux-x86_64-gpu/pom.xml index b8b3ec19d0..85ff4d25d3 100644 --- a/scala-package/native/linux-x86_64-gpu/pom.xml +++ b/scala-package/native/linux-x86_64-gpu/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-scala-native-parent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -20,7 +20,7 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> diff --git a/scala-package/native/osx-x86_64-cpu/pom.xml b/scala-package/native/osx-x86_64-cpu/pom.xml index 0b09c1b5e1..809da667e2 100644 --- a/scala-package/native/osx-x86_64-cpu/pom.xml +++ b/scala-package/native/osx-x86_64-cpu/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-scala-native-parent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -20,7 +20,7 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> diff --git a/scala-package/native/pom.xml b/scala-package/native/pom.xml index 5013fe9348..55fb053802 100644 --- a/scala-package/native/pom.xml +++ b/scala-package/native/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/scala-package/pom.xml b/scala-package/pom.xml index 68eb598012..e77227343e 100644 --- a/scala-package/pom.xml +++ b/scala-package/pom.xml @@ -5,7 +5,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <name>MXNet Scala Package - Parent</name> <url>https://github.com/dmlc/mxnet/tree/master/scala-package</url> <description>MXNet Scala Package</description> diff --git a/scala-package/spark/pom.xml b/scala-package/spark/pom.xml index 98d724969b..3863c774b0 100644 --- a/scala-package/spark/pom.xml +++ b/scala-package/spark/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-parent_2.11</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> @@ -21,7 +21,7 @@ <dependency> <groupId>ml.dmlc.mxnet</groupId> <artifactId>mxnet-core_${scala.binary.version}</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> diff --git a/snapcraft.yaml b/snapcraft.yaml index bbc8087a74..8a0dd4528e 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: mxnet -version: '1.0.0' +version: '1.0.1' summary: MXNet is a deep learning framework designed for efficiency and flexibility. description: | MXNet is a deep learning framework designed for both efficiency and ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
